Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
abbababa1
Frequent Visitor

Using Filter with UNION in DAX

Hi,

 

I am trying to flatten a table and filter by AAA values <> 0. So far the union works, but the filters not. How to approach this?

Renewals_flat =


    UNION (
        SELECTCOLUMNS (
        'Renewals',
        "Date", Renewals[CALENDAR_DATE],
        "GEO", Renewals[GEO],
        "Type", "New_Logo",
        "AAA", Renewals[NEW_LOGO]
    ),
        SELECTCOLUMNS (
        'Renewals',
        "Date", Renewals[CALENDAR_DATE],
        "GEO", Renewals[GEO],
        "Type", "New_Expansion",
        "AAA", Renewals[NEW_EXPANSION]
    ),
        SELECTCOLUMNS (
        'Renewals',
        "Date", Renewals[CALENDAR_DATE],
        "GEO", Renewals[GEO],
        "Type", "Gross New",
        "AAA", Renewals[_GROSS_NEW_ALL]
    )
 
)

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @abbababa1 

how about filter the 'Renewals' table first like:
 
VAR _table=
CALCULATETABLE(
    Renewals, 
    Renewals[NEW_LOGO]<>BLANK(),
    Renewals[NEW_EXPANSION]<>BLANK(),
    Renewals[_GROSS_NEW_ALL]<>BLANK(),
)
 
then use _table instead of Renewals in the rest of your code.

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @abbababa1 

how about filter the 'Renewals' table first like:
 
VAR _table=
CALCULATETABLE(
    Renewals, 
    Renewals[NEW_LOGO]<>BLANK(),
    Renewals[NEW_EXPANSION]<>BLANK(),
    Renewals[_GROSS_NEW_ALL]<>BLANK(),
)
 
then use _table instead of Renewals in the rest of your code.
mariussve1
Impactful Individual
Impactful Individual

Hi,

 

This should work:

 

Union (

     Selectcolumns (

       Filter (

             Table,
             Table[Column] <> 0

        ),

        Col1, Col2......

),

Selectcolumns ( Filter (

..........

 

 

Br

Marius


Br
Marius
BI Fabrikken
www.bifabrikken.no

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.