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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
martcatnip
Frequent Visitor

Measure to Column

Hi,

I currently have a measure

VAR __SelectedDate = MAX('Log_Activation'[DateTime])
VAR __Table1 = FILTER(ALL('Log_Activation'),[DateTime]<=__SelectedDate)
VAR __Table2 = FILTER(ALL('Log_Activation'),[DateTime]<__SelectedDate)
VAR __Device1 = DISTINCT(SELECTCOLUMNS(__Table1,"Device",[Name]))
VAR __Device2 = DISTINCT(SELECTCOLUMNS(__Table2,"Device",[Name]))
VAR __Table = EXCEPT(__Device1, __Device2)
VAR __Devices = DISTINCT(SELECTCOLUMNS(__Table,"Device",[Device]))
RETURN
CONCATENATEX(__Devices,[Device],",")

 

I am wondering if there is any way I can change it to a column.


Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @martcatnip ,

 

As @Greg_Deckler  said, if you want dynamic results, calculated columns are not recommended. If it is a static result, you can modify it to

 

Calculated Column =
VAR __Table1 =
    FILTER (
        ALL ( 'Log_Activation' ),
        [DateTime] <= EARLIER ( 'Log_Activation'[DateTime] )
    )
VAR __Table2 =
    FILTER (
        ALL ( 'Log_Activation' ),
        [DateTime] < EARLIER ( 'Log_Activation'[DateTime] )
    )
VAR __Device1 =
    DISTINCT ( SELECTCOLUMNS ( __Table1, "Device", [Name] ) )
VAR __Device2 =
    DISTINCT ( SELECTCOLUMNS ( __Table2, "Device", [Name] ) )
VAR __Table =
    EXCEPT ( __Device1, __Device2 )
VAR __Devices =
    DISTINCT ( SELECTCOLUMNS ( __Table, "Device", [Device] ) )
RETURN
    CONCATENATEX ( __Devices, [Device], "," )

 

 

The calculated column will use EARLIER to get the current row.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @martcatnip ,

 

As @Greg_Deckler  said, if you want dynamic results, calculated columns are not recommended. If it is a static result, you can modify it to

 

Calculated Column =
VAR __Table1 =
    FILTER (
        ALL ( 'Log_Activation' ),
        [DateTime] <= EARLIER ( 'Log_Activation'[DateTime] )
    )
VAR __Table2 =
    FILTER (
        ALL ( 'Log_Activation' ),
        [DateTime] < EARLIER ( 'Log_Activation'[DateTime] )
    )
VAR __Device1 =
    DISTINCT ( SELECTCOLUMNS ( __Table1, "Device", [Name] ) )
VAR __Device2 =
    DISTINCT ( SELECTCOLUMNS ( __Table2, "Device", [Name] ) )
VAR __Table =
    EXCEPT ( __Device1, __Device2 )
VAR __Devices =
    DISTINCT ( SELECTCOLUMNS ( __Table, "Device", [Device] ) )
RETURN
    CONCATENATEX ( __Devices, [Device], "," )

 

 

The calculated column will use EARLIER to get the current row.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Community Champion
Community Champion

@martcatnip In your case, no if you want it to remain dynamic based upon user interaction. Calculated columns are only recaculated at the time of data load/refresh. Now, if it doesn't need to be dynamic and your "__SelectedDate" can be based on something like a [Date] column in your table, then just set it to that and in theory the rest of the formula looks like it should be just fine.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.