Sum in Footer not exporting to Excel (1 Viewer)

taifoor

Registered User.
Local time
Today, 05:58
Joined
Jul 16, 2015
Messages
62
Dear All,

I have to sum an amount column in report footer. When is use Sum([Amount]) formula, then it exports ok. But when i use Nz(Sum([Amount]),0) it do not exports to excel. I think its beacuse Nz is not supported by Excel. So my obejctive is to sum in footer and show 0 if all values of amount are null. Please guide.

Again please note that i want that sum in footer to be exported to excel.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 09:58
Joined
May 7, 2009
Messages
19,232
Can u use Sum(Nz([Amount],0))
 

taifoor

Registered User.
Local time
Today, 05:58
Joined
Jul 16, 2015
Messages
62
Can u use Sum(Nz([Amount],0))

I also tried that but its not exporting to excel. I have also tried IIf(isnull(sum([Amount])),0,sum([Amount])) but no luck.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 09:58
Joined
May 7, 2009
Messages
19,232
See my formula, it is different!
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 09:58
Joined
May 7, 2009
Messages
19,232
U think the problem is not Nz. I tested with count() and it did not show in excel using Outputto.
 

taifoor

Registered User.
Local time
Today, 05:58
Joined
Jul 16, 2015
Messages
62
U think the problem is not Nz. I tested with count() and it did not show in excel using Outputto.

Right. So I need any solution ...... I am trying by myself too but still not getting lucky :)
 

Users who are viewing this thread

Top Bottom