Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Applicable88
Impactful Individual
Impactful Individual

Calculated Column in DAX, if no value then...

Hello,

I have a table which mostly has no dataset at the very beginning of the month. Thats because its a forecast sales data for current month, which will be known some time in the first days of a month.

So this table has no rows by then. So I wanted a card to display "TBA"= To be announced, instead of "empty" which is default behaviour from PowerBi Card visualization. 

I did following for calculated column:  

if (  isblank( 'sales'[Forecast]), "TBA", 'sales'[Forecast]) 

also tried with = blank() and other functions. Simply not working. Does DAX won't create a empty row with just a new column stating TBA, because the table has no rows? 

Thank you in advance.

Best. 

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Applicable88 ,

 

If your data model does not have any data, it will not be displayed if you add a calculated column, you can use a measure instead.

7.png6.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

Hi @Applicable88 ,

 

If your data model does not have any data, it will not be displayed if you add a calculated column, you can use a measure instead.

7.png6.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Applicable88 ,

This can work if you can format 'sales'[Forecast] as text

 

new measures  ---

Forecast M = Sum('sales'['sales'[Forecast])

 

final measure =

if ( isblank( [Forecast M]), "TBA", [Forecast M] & "")

 

or better format the number using the format function

https://docs.microsoft.com/en-us/dax/format-function-dax

Hello @amitchandak ,

not working. 

Applicable88_0-1620032812427.png

I think if there are no rows input into DataModell, the format () cannot format from "nothing" and also isblank cannot check for blank when rows=0. Thats what is stated in the left bottom side. zero rows. 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.