The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Experts
I cannot see the wood for the trees, not sure what i am doing wrong here.......
this is what i am trying to establish..
as a guide...
?filter=Store/Territory eq 'NC' and Store/Chain eq 'Fashions Direct'
Report Filter = IF(ISFILTERED('DIM Sales Person'[Office Location]),[Report URL]&"?filter=" & "DIM Sales Person" & " eq " &"'" & SELECTEDVALUE('DIM Sales Person'[Office Location]) & "'" &"and"& IF(ISFILTERED('DIM Sales Person'[City])& "DIM Sales Person" & " eq " &"'" & SELECTEDVALUE('DIM Sales Person'[City]) & "'",[Report URL]))
Solved! Go to Solution.
Hi @Anonymous
You probobly need something like this
Report Filter = VAR oL = "DIM Sales Person/Office Location eq '" & SELECTEDVALUE( 'DIM Sales Person'[Office Location] ) & "'" VAR oC = "DIM Sales Person/City eq '" & SELECTEDVALUE( Table3[Result] ) & "'" RETURN [Report URL] & SWITCH( TRUE, ISFILTERED( 'DIM Sales Person'[Office Location] ) && ISFILTERED( 'DIM Sales Person'[City] ), "?filter=" & oL & " and " & oC, ISFILTERED( 'DIM Sales Person'[Office Location] ), "?filter=" & oL, ISFILTERED( 'DIM Sales Person'[City] ), "?filter=" & oC )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
You probobly need something like this
Report Filter = VAR oL = "DIM Sales Person/Office Location eq '" & SELECTEDVALUE( 'DIM Sales Person'[Office Location] ) & "'" VAR oC = "DIM Sales Person/City eq '" & SELECTEDVALUE( Table3[Result] ) & "'" RETURN [Report URL] & SWITCH( TRUE, ISFILTERED( 'DIM Sales Person'[Office Location] ) && ISFILTERED( 'DIM Sales Person'[City] ), "?filter=" & oL & " and " & oC, ISFILTERED( 'DIM Sales Person'[Office Location] ), "?filter=" & oL, ISFILTERED( 'DIM Sales Person'[City] ), "?filter=" & oC )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
mnay thanks mariusz.....let me test and come back appricated thefeedback
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
122 | |
85 | |
77 | |
55 | |
48 |
User | Count |
---|---|
136 | |
128 | |
78 | |
64 | |
63 |