Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Syntax Error : help

Hi all,

Can anyone tell me where am i going wrong in this :

=num(sum([Payment Count])/(sum(IF([Billing Type]='Regular',([Bill Count]),0),'#,##%')))

Thanks in advance

1 Solution

Accepted Solutions
erichshiino
Partner - Master
Partner - Master

It's the order you closed the ()'s

Try this:

=num(

sum([Payment Count])/

(

sum(

IF([Billing Type]='Regular',([Bill Count]),0)

) )

,'#,##%')

View solution in original post

4 Replies
erichshiino
Partner - Master
Partner - Master

It's the order you closed the ()'s

Try this:

=num(

sum([Payment Count])/

(

sum(

IF([Billing Type]='Regular',([Bill Count]),0)

) )

,'#,##%')

amars
Specialist
Specialist

Try this

=num(sum([Payment Count])/(sum(IF([Billing Type]='Regular',([Bill Count]),0))),'#,##%')

Not applicable
Author

Thanks that worked.

Can u also help me with this please?

(sum ([Payment Count]))/( sum(if([Billing Type]='Regular',[Bill Count],0)*(100)))

erichshiino
Partner - Master
Partner - Master

It's basically the same, isn't it?

We can just adapt the previous one, and multiply it (or divide by 100) outside of the sums.

=(

sum([Payment Count])/

(

sum(

IF([Billing Type]='Regular',([Bill Count]),0)

)*100 )

)