简体   繁体   中英

Excel formule to an PowerPivot Formula

I need to convert this Excel sheet formula to an PowerPivot formula:

=IF(D3=0,"NA",B3/D3)

B3 = F5
D3 = F13

Need to add the IF to this formula:

=SUM('data'[F5]) / SUM('data'[F13])

How can I do this?

这是您要的:

= IF (SUM('data'[F13]) = 0, 0, SUM('data'[F5]) / SUM('data'[F13]))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM