Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi,
I currently have a measure
I am wondering if there is any way I can change it to a column.
Thanks
Solved! Go to Solution.
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.
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.
@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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
31 | |
31 | |
20 | |
15 | |
12 |
User | Count |
---|---|
20 | |
18 | |
13 | |
10 | |
10 |