Forum Discussion
Date slicer values in Table title
- 5 years ago
Hi PBInewbie21 ,
Create a measure as below:
Measure = var _mindate=MINX(ALLSELECTED('Date'),'Date'[Date]) var _maxdate=MAXX(ALLSELECTED('Date'),'Date'[Date]) Return "Orders from"&_mindate&" to "&_maxdateThen click the table visual>format>title:on>format:
Finally you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
Hi PBInewbie21 - Yes this is possible
Try creating a measure Something like:
Start Date =
IF (
ISFILTERED ( [TableName]) && HASONEVALUE ([TableName] ),
FIRSTNONBLANK(TableName[Start Date],0))End Date =
IF (
ISFILTERED ( [TableName]) && HASONEVALUE ([TableName] ),
FIRSTNONBLANK(TableName[End Date],0))
and dispay these 2 fields in a speperate cards
Or
Make another measure something like:
Orders From [Start Date measurse] to [End Date measure]
Hope this helps.
Cheers,
-Namish B
Thanks Anonymous for your reply.
I do not have Start date and End date columns in my Order table. It only has Name, Order Date and Qty columns.
Also, I want to grab values from Date range boxes, Is it possible? Attaching the image for clearity.
So, I want to see Table Title 'Orders from 1/1/2020 to 6/16/2020'
with amitchandak 's syntax it shows Orders from 1/1/2020 to 5/1/2020 as there are no more records after 5/1/2020 in Orders table. Any idea?
- v-kelly-msft5 years ago
Community Support
Hi PBInewbie21 ,
Create a measure as below:
Measure = var _mindate=MINX(ALLSELECTED('Date'),'Date'[Date]) var _maxdate=MAXX(ALLSELECTED('Date'),'Date'[Date]) Return "Orders from"&_mindate&" to "&_maxdateThen click the table visual>format>title:on>format:
Finally you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
- PBInewbie215 years ago
Helper II
Hi v-kelly-msft ,
Thanks for attaching all the screenshots and .pbix file too. Helps the newbie like me. Looks like all of the above replies would help if my date table had rows for every single day.
Noticed that my Date table has some rows missing and that's why it pickes date value from Order table.