Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
What I want to create is a measure in Dim_Client that shows the data of Age, Gender, Name only if the colomn Client_Info = 1.
Example: If(Client_Info = 1 then show: Age, Gender, Name), Else (Show blank())
Access to the Power BI File:
https://www.dropbox.com/s/ap7m662l3qup8wj/Auth_Set.pbix?dl=0
Thanks!
Solved! Go to Solution.
You can create the measure likke:
_Age =
IF (
SELECTEDVALUE ( Dim_auth[Client_Info] ) = 1,
TOPN ( 1, VALUES ( Dim_Client[Age] ) )
)
Please check the updated file
You can create the measure likke:
_Age =
IF (
SELECTEDVALUE ( Dim_auth[Client_Info] ) = 1,
TOPN ( 1, VALUES ( Dim_Client[Age] ) )
)
Please check the updated file