Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Dear
i want Implement chart Dynamically Expression From Script
In the event that user select formula-title list Box ,show Related expression from formula-title and set on chart
Hi,
maybe one solution could be:
GenreValue:
LOAD 'Genre'&Ceil(Rand()*10) as Genre,
Ceil(Rand()*100) as interest,
'Gender'&Ceil(Rand()*2) as Gender
AutoGenerate 30;
Expression:
LOAD RecNo() as ID, * INLINE [
FormulaTitle, Formula
Interest Rate, Sum(interest)
Relative to the total amount of interest, "Num(Sum(interest)/Sum(Total interest),'##0.0%')"
];
see also:
The Magic of Dollar Expansions
hope this helps
regards
Marco
Hi,
maybe one solution could be:
GenreValue:
LOAD 'Genre'&Ceil(Rand()*10) as Genre,
Ceil(Rand()*100) as interest,
'Gender'&Ceil(Rand()*2) as Gender
AutoGenerate 30;
Expression:
LOAD RecNo() as ID, * INLINE [
FormulaTitle, Formula
Interest Rate, Sum(interest)
Relative to the total amount of interest, "Num(Sum(interest)/Sum(Total interest),'##0.0%')"
];
see also:
The Magic of Dollar Expansions
hope this helps
regards
Marco