calvinsmith
Programmer
I have a formula that I would like to sum the values of the variables to give me a total number. This is what I am using so far:
Code:
if {Plants000.SPECIES} = "ferocactus wislizenii" and {Plants000.DISPOSITIO} = "pip" and {Plants000.HEIGHT} > 2 then
numbervar fwislizeniigreater2 := 1
else
numbervar fwislizeniigreater2 := 0;
//sum(fwislizeniigreat2) //This will not work because it
//not a field
//This is where I need to sum the values.
//If I create a new formula, I can sum this formula but,
//I would like to do multiple sums on this formula to be
//used at the end in one big forumla.
//Any help would be greatly appreciated!