Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Show formula in Expression

Hello,

I would like to know if it is possible in a expression to show instead of the result what you are doing.

For example for Drinks, to show in the expression:  200/1=200

Thank you

1 Solution

Accepted Solutions
sunny_talwar

Or this if you need the whole thingie

=sum(#SalesDetAmt)& '/' &count(Sale_ID) & ' = ' & sum(#SalesDetAmt)/count(Sale_ID)

Capture.PNG

View solution in original post

3 Replies
MK_QSL
MVP
MVP

=sum(#SalesDetAmt)& '/' &count(Sale_ID)

sunny_talwar

Or this if you need the whole thingie

=sum(#SalesDetAmt)& '/' &count(Sale_ID) & ' = ' & sum(#SalesDetAmt)/count(Sale_ID)

Capture.PNG

Anonymous
Not applicable
Author

thank you!!

this is what i need.