TEMPMEM[n] |
Top Previous Next |
Keyword Description Local temporary storage for numerical values or variables Class Expression Where Legal
Syntax TEMPMEM[n] Where n is an integer value 1-100 Example Sample code IF COL1[2] < COL2[2] AND COL1[1] > COL2[1] THEN_ TEMPMEM[3] = TRUE ' If a cross over occurred yesterday, between the indicator ' values in column 1 and those in column 2 then this stores ' in TEMPMEM[3] the fact or truth that the event occurred. ' This fact or event is lost after we exit the current page ' or anytime a day boundary is crossed.
` See also: MEMORY, User-named variables (discussion) |