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
jsabo
Helper I
Helper I

DAX to change field/column based on slicer?

Hey guys,

Putting together a project which will mash up our company data with publicly available data from congress. I am putting together a little information section of the report which will have the Name, Party, State etc. of the selected Congressman. But I do not want the text to be populated unless a selection on the filter has been made. I tried the below with a calculated column, but it didn't work:

 

Name_Dynamic = if(COUNTROWS('Legislators - ALL API') > 1, "Select a Congressman", 'Legislators - ALL API'[name])

 

any ideas? Thanks.

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

are using a measure?. This work in a measure not a calculated column




Lima - Peru

View solution in original post

4 REPLIES 4
Vvelarde
Community Champion
Community Champion

hi @jsabo

 

Name_Dynamic = if(COUNTROWS('Legislators - ALL API') > 1, "Select a Congressman", Values ('Legislators - ALL API'[name]))




Lima - Peru

Thanks for the suggestion, @Vvelarde! It just gets stuck as "Select a Congressman" unfortunately... it doesn't change when a selection is made.

Vvelarde
Community Champion
Community Champion

are using a measure?. This work in a measure not a calculated column




Lima - Peru

ah, of course! That worked. Thanks very much!

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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