Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi there,
I have the below 3 columns all in the same table (call it TABLE_1) and I am looking to return the value of one column if the other is blank:
Month | Projected Rate | Actual Rate |
December | 1.35 | 1.34 |
January | 1.35 | |
February | 1.35 |
What I am looking to acheive is that if the value in the "Actual Rate" column is blank, return the value in the "Projected Rate" column.
Thanks for your help.
Solved! Go to Solution.
Hi,
Write this calculated column formula
=if(isblank(Data[Actual rate]),Data[projected rate],Data[Actual rate])
See if this shorther calculated column formula works as well
=coalesce(Data[Actual rate],Data[projected rate])
Hope this helps.
Thank you very much
You are welcome.
Hi,
Write this calculated column formula
=if(isblank(Data[Actual rate]),Data[projected rate],Data[Actual rate])
See if this shorther calculated column formula works as well
=coalesce(Data[Actual rate],Data[projected rate])
Hope this helps.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.