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.
I have a table with single column that I have dynamically bind to M query parameter.
Column1
now-1d
now-2d
I want to filter the values based on column1 but i want to show value as Last 1day, Last 2 day on filter visual.
Suggest a solution if possible?
Solved! Go to Solution.
Hi @Snapdrag ,
You can create a measure as below to get it, please find the details in the attachment.
Measure =
VAR _selday =
SELECTEDVALUE ( 'Table'[Column1] )
VAR _a =
IFERROR ( SEARCH ( "-", _selday ), 0 )
RETURN
CONCATENATE (
"Last ",
CONCATENATE ( MID ( _selday, _a + 1, LEN ( _selday ) - _a - 1 ), " day(s)" )
)
Best Regards
Hi @Snapdrag ,
You can create a measure as below to get it, please find the details in the attachment.
Measure =
VAR _selday =
SELECTEDVALUE ( 'Table'[Column1] )
VAR _a =
IFERROR ( SEARCH ( "-", _selday ), 0 )
RETURN
CONCATENATE (
"Last ",
CONCATENATE ( MID ( _selday, _a + 1, LEN ( _selday ) - _a - 1 ), " day(s)" )
)
Best Regards
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 |
---|---|
126 | |
115 | |
69 | |
62 | |
46 |