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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
kalkhudary
Helper IV
Helper IV

Isblank if nothing selected on a visual

 
Hello Community, 
 
I am struggling to write this formula that shows the last year price index when I click on the visual for a particular city and if I don;t click on any, it should give me blank. Can someone help me rewrite it so it works.
 
Last Year Price index = IF(ISBLANK([Current Price Index],Blank(),calculate([Current Price Index],DATEADD(Calender[Date], -1,YEAR))))
 
Thanks indeed.
1 ACCEPTED SOLUTION
jennratten
Super User
Super User

Hello - You were really close.  The measure below works for me.  Basically, you should create a separate measure for LastYearPriceIndex with the basic logic of calculating the amount for the prior year (excluding the blank evaluation).  Then create another measure which is the one that goes in the visual (example below).  You will need to update the table and column name in the SelectedCity variable and also update measure name in the SelectedCalculation variable.

Last Year Price Index for Display = 
VAR SelectedCity = SELECTEDVALUE( DimTableName[CityColumnName],blank() )
VAR SelectedCalculation = [YourMeasureName]
VAR Result = if ( SelectedCity = blank(), blank(), SelectedCalculation )
RETURN
    Result

 

View solution in original post

5 REPLIES 5
kalkhudary
Helper IV
Helper IV

@jennratten That worked like magic 🙂 Quick Question: is there a way that instead of displaying the word (Blank) to keep it with no words just nothing shows up. Curious to know if we can apply something to the dax to make it show nothing in terms of wording or maybe a dash (-)

There are a couple of things you can do. 

  1. Add conditional formatting to make the font color the same as the background if the value is equal to 0 or blank.
  2. Change the return result from blank() to custom text of your choosing.

Actually, I figure it out, just change blank() to "-".
 
Last Year Price Index for Display =
VAR SelectedCity = SELECTEDVALUE( Geography[City],blank() )
VAR SelectedCalculation = [Last Year Price index]
VAR Result = if ( SelectedCity = blank(), "-", SelectedCalculation )
RETURN
    Result
 
Thanks so much, you made my day.

You are very welcome!!

jennratten
Super User
Super User

Hello - You were really close.  The measure below works for me.  Basically, you should create a separate measure for LastYearPriceIndex with the basic logic of calculating the amount for the prior year (excluding the blank evaluation).  Then create another measure which is the one that goes in the visual (example below).  You will need to update the table and column name in the SelectedCity variable and also update measure name in the SelectedCalculation variable.

Last Year Price Index for Display = 
VAR SelectedCity = SELECTEDVALUE( DimTableName[CityColumnName],blank() )
VAR SelectedCalculation = [YourMeasureName]
VAR Result = if ( SelectedCity = blank(), blank(), SelectedCalculation )
RETURN
    Result

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.