Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello, please your help to the following query:
I am consolidating in a new table the unique values of different tables and I need to place a filter to one of these tables to extract the data that matches the text "RESERVE"
Attached code and image of my DAX query.
Solved! Go to Solution.
You have not specified the name of the "other column" that will be used for the filtering
CONSOLIDATES * to 1 =
FILTER (
DISTINCT (
UNION (
VALUES ( 'Purchases V2'[NEED*] ),
CALCULATETABLE (
VALUES ( 'SQVI_LIB01'[ID_UNICO] ),
'SQVI_LIB01'[The_OTHER_COLUMN] = "RESERVATION"
),
VALUES ( SE16N[NEED*] )
)
),
[NEED*] <> BLANK ()
)
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Thank you very much, the issue is solved.
Then please mark the answer as the solution and give kudos if suitable
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
You have not specified the name of the "other column" that will be used for the filtering
CONSOLIDATES * to 1 =
FILTER (
DISTINCT (
UNION (
VALUES ( 'Purchases V2'[NEED*] ),
CALCULATETABLE (
VALUES ( 'SQVI_LIB01'[ID_UNICO] ),
'SQVI_LIB01'[The_OTHER_COLUMN] = "RESERVATION"
),
VALUES ( SE16N[NEED*] )
)
),
[NEED*] <> BLANK ()
)
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.