Forum Discussion
michellerosen
9 years agoFrequent Visitor
Add calculated values to non calculated column?
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 h...
- Anonymous9 years ago
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
michellerosen
9 years agoFrequent Visitor
Basically I want to show a var number when there is no data, and show the actual data when there is data
Anonymous
9 years agoNot applicable
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