Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vireshkolagimat
Creator III
Creator III

Value not showing

Hi All,

I have field called SalesValue and it has data. But when i try to do sum like Sum(SalesValue) it is showing as 0(zero) even thought i have data for the SalesValue column.

Any idea what is the issue. Attached is the screenshot for your reference.

Regards,

Viresh

Value not showing.PNGh

6 Replies
Clever_Anjos
Employee
Employee

All values seems to be unrelated to your application.

Maybe there´s a filter that is beeing applyied

vinieme12
Champion III
Champion III

You data is formatted as Text, try

SUM(TRIM(Salesvalue))

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vireshkolagimat
Creator III
Creator III
Author

Hi, If i make selections in listbox it shows the sum value.

vireshkolagimat
Creator III
Creator III
Author

Hi, I tried but no changes. Thank you.

Clever_Anjos
Employee
Employee

Some selections are filtering out your values

effinty2112
Master
Master

Hi Viresh,

Try:

=Sum(alt(SalesValue,0))

Cheers

Andrew