Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi can I take a table and turn it into a list??
Message was edited by: Neil Woodham
This is great thanks,
Can you crosstable load and perform an inline function from table already loaded?
Thanks
INLINE LOAD is just for demonstration, use a resident table load with your real data:
CROSSTABLE (Field, Value)
LOAD
recno() as ID,
* ,
' ' as ' ';
LOAD RecordNo, Name, Address
RESIDENT YourResidentTable;
Sorry about the repeating questions, what does the =1 in the expression do?
It's kind of a dummy value, a straight table needs an expression, and a constant value <> 0 just shows all lines (selections will still filter dimensions). Remember, the expression column will be hidden from the user.