Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have 2 tables
GDS TNR data
Portfolio FY22
I am using the below dax to get the name from TNR data,
But in TNR Data I have a column called "Visible data, which has the value (True, False)
before the above function does a Lookup, it needs to filter the data which is "True" using the Visible Data column
and the tables are not connected as well
How to achieve this?
Solved! Go to Solution.
Hi @vjnvinod ,
You can try like this:-
Column =
CALCULATE (
MAX ( 'Portfolio report FY22'[Engagement Partner] ),
FILTER (
'Portfolio report FY22',
'Portfolio report FY22'[Engagement ID] = 'GDS TNR Data'[EngID]
&& 'GDS TNR Data'[EngID] = TRUE()
)
)
If its not worked then please share the sample data with expected output 🙂
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @vjnvinod ,
You can try like this:-
Column =
CALCULATE (
MAX ( 'Portfolio report FY22'[Engagement Partner] ),
FILTER (
'Portfolio report FY22',
'Portfolio report FY22'[Engagement ID] = 'GDS TNR Data'[EngID]
&& 'GDS TNR Data'[EngID] = TRUE()
)
)
If its not worked then please share the sample data with expected output 🙂
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
@vjnvinod if you are getting the name from the GDS TNR Data can you please tell me why you have the "Result ColunmName" which is the first parameter of the LOOKUPVALUE function "Engagement Partner" from the "Portflolio FY22 Table? From the formula is seems like you are looking up data from Portfolio FY22 and pulling it into the GDS TNR Data table
I tried
something like below, but its throwing error
@vjnvinod the solution provided by @Samarth_18 is what I would recommend too
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
99 | |
97 | |
41 | |
38 |
User | Count |
---|---|
151 | |
123 | |
79 | |
73 | |
71 |