Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello everyone,
i´m new quite new in this business and need some help to solve a problem i´m facing for several hours now.
Problem/Question:
Is it possible, if in the column "April TEUR" the value for some "FC_DATE" is 0,00. To replace the value 0,00 with the value of the column "April Actuals".
Please look at the attached picture as a help to understand my problem.
It should look like the next picture below, which is made in Excel (manually). The Blue values( Column April A. in my case) are those which are replacing the value 0,00 (Column FC april TEUR in my case). So everytime a value 0,00 appears, it should take the value of the Column April A., if the value 0,00 is in, then it should take the value which is given from the column FC April TEUR.
I hope really that you could help me with this one.
Thank you in advance for helping me 🙂
Solved! Go to Solution.
Hi @Billy0503,
In this scenario, you should be able to use the formula below to create a new measure to recalculate the value of "April TEUR", and show the measure on your report to get the expected result.
April TEUR Mesure =
IF (
SUM ( 'Table'[April TEUR] ) > 0,
SUM ( 'Table1'[April TEUR] ),
SUM ( 'Table1'[April Actuals] )
)
Note: You will need to replace 'Table1' with your real table name. ![]()
Regards
Hi @Billy0503,
In this scenario, you should be able to use the formula below to create a new measure to recalculate the value of "April TEUR", and show the measure on your report to get the expected result.
April TEUR Mesure =
IF (
SUM ( 'Table'[April TEUR] ) > 0,
SUM ( 'Table1'[April TEUR] ),
SUM ( 'Table1'[April Actuals] )
)
Note: You will need to replace 'Table1' with your real table name. ![]()
Regards
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Check out the July 2026 Power BI update to learn about new features.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 30 | |
| 25 | |
| 24 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 33 | |
| 21 | |
| 20 | |
| 19 |