Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |