Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
In Power BI I have a column that gets data from an excel file that is updated every day. However for days it is not updated for yet, I want to add a calculated value that projects what the upcoming hours could be based on past values.
I'm unsure as to how to add these calculated values in blank cells in a column that gets data from another file
Solved! Go to Solution.
Basically, you would need to add a new column using formula as below.
Column = IF(ISBLANK(Table2[Sales]),500, Table2[Sales])
If the above example doesn’t help, please share sample data of your table.
Regards,
Lydia Zhang
Basically I want to show a var number when there is no data, and show the actual data when there is data
Basically, you would need to add a new column using formula as below.
Column = IF(ISBLANK(Table2[Sales]),500, Table2[Sales])
If the above example doesn’t help, please share sample data of your table.
Regards,
Lydia Zhang
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.