January 2, 200719 yr Hi, I am looking for a calculation which can create a value list from a found set or a relation, which I can use for a input of xmCHART. Example Record 1 Flied data = [12 ] Record 2 Flied data = [9 ] Record 3 Flied data = [17,8] Record 4 Flied data = [0 ] Calculation flied = [12 9 17,8 0] [color:red]I want to use it to draw a graph without triggering a script!
January 2, 200719 yr Try a CF using GetNthRecord(), like this: http://www.clevelandconsulting.com/support/viewtopic.php?t=637
January 2, 200719 yr Author Nice !? How / where can I order those custom functions, or is it freeware ?
January 2, 200719 yr It's DIY and free - Just enter the text found in the code box into a newly created customfunction build found in File>Define>customfunction, inspect the namings and apply them to correct locations. --sd
January 2, 200719 yr If your data is coming from a related set, you don't need a custom function for this. A calculation (result is Text) = Substitute ( List ( Related::Field ) ; ¶ ; " " ) should return the indicated result.
Create an account or sign in to comment