Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello All,
I have a spread sheet. I need to create calculate column for E, H & I columns in Power Bi. So my source spreadsheet will be without E, H & I columns.
I like to calculate all columns through Power Bi.
For Column E formula in Spread sheet is as: =IF(D2<=0,"N/A",(C2/D2))
For Column H formula in Spread sheet is as: =IF(D2>0,SUM(F2:G2),0)
For Column I formula in Spread sheet is as: =IF(H2>0,(H2/D2),"N/A")
| A | B | C | D | E | F | G | H | I | J |
| A1 | 32 | 29 | 61 | 47.5% | 6.26 | 133.91 | 140.17 | 2.298 | APRIL 2021 |
| B1 | 72 | 0 | 72 | 0.0% | 0.99 | 84.16 | 85.15 | 1.183 | APRIL 2021 |
Help will be appreciated. Thanks
Solved! Go to Solution.
@sdhn take a look here
@sdhn calculated column in dax
E = IF('Table'[D]<=0,0,DIVIDE('Table'[C],'Table'[D]))
H = IF('Table'[D]<=0,0,DIVIDE('Table'[C],'Table'[D]))
I = IF('Table'[H]>0,DIVIDE('Table'[H],'Table'[D]),0)
Hi Smpa01,
Thanks for prompt response.
For column E & I works fine.
But look at formula of col. H
Column Name : Total Amount (H)
=IF(D2>0,SUM(F2:G2),0)
Its requires sum of F2:G2. isn't?
you suggested as:
H = IF('Table'[D]<=0,0,DIVIDE('Table'[C],'Table'[D]))
Please advice. Thank you
_H = IF('Table'[D]>0,'Table'[F]+'Table'[G],0)
H = IF('Table'[D]>0,'Table'[F]+'Table'[G],0)
I am getting following message:
<pi>A circular dependency was detected: TABLE[Column], TABLE[Column E], TABLE[Column].</pi>
We created Column E earlier as:
E = IF('Table'[D]<=0,0,DIVIDE('Table'[C],'Table'[D]))Thanks
@sdhn take a look here
Is it possible , I can send you a sample source file?
Still not working for me. Thanks
@sdhn yes
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 18 | |
| 12 | |
| 11 |