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 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello, I´m using the following code:
#"Substract" = Table.AddColumn(MaxOfYear, "Diferencial aceite", each [MaxfYear] - [MinOfYear], type number)
To calculate the difference between the Max value and Min value from a column, but when the Min and Max is the same value I got 0 (obviusly), so I need to change the Min value to 0 so i get : MaxYfear - 0 = MaxfYear
How can I do this?
Solved! Go to Solution.
Hi @OscarSuarez10,
you can use if/then/else for it.
#"Substract" = Table.AddColumn(MaxOfYear, "Diferencial aceite", each if [MaxfYear] = [MinOfYear] then [MaxfYear] else [MaxfYear] - [MinOfYear], type number)
Or do I understand you wrong and you expect something like: IF MAX equals MIN then SET VALUE IN COLUMN "MIN" TO 0?
Hi @OscarSuarez10,
you can use if/then/else for it.
#"Substract" = Table.AddColumn(MaxOfYear, "Diferencial aceite", each if [MaxfYear] = [MinOfYear] then [MaxfYear] else [MaxfYear] - [MinOfYear], type number)
Or do I understand you wrong and you expect something like: IF MAX equals MIN then SET VALUE IN COLUMN "MIN" TO 0?
Hello @Nolock that solved my question thank you, now I have to use the same code to substract the production of the last year and the previous year last production like this: 1000 (feb-1-2021) - 700 (april-1-2020) = 300, can you help me ?
| Year | Production | Diferencial production 2019 | 300 | |
| jan-1-2019 | 100 | |||
| feb-1-2019 | 200 | |||
| march- 1- 2019 | 300 | Diferencial production 2020 | 500 | |
| april-1-2019 | 400 | |||
| jan-1-2020 | 200 | |||
| feb-1-2020 | 300 | Diferencial production 2021 | 300 | |
| march- 1- 2020 | 400 | |||
| april-1-2020 | 700 | |||
| feb-1-2021 | 1000 |
Hi @OscarSuarez10,
please create a new thread for a new topic. Especially if this thread is already closed.
And please try to write more examples that we know what you mean. Thank you very much 🙂
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |