Forum Discussion
Different Time Columns in Matrix
Anonymous ,The information you have provided is not making the problem clear to me. Can you please explain with an example.
Appreciate your Kudos.
if you want to select this week as slcier filter, you need to have columns like
Start Week = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
End date= 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
Week Type = Switch( True(),
[start week]<=Today() && [end date]>=Today(),"This Week" ,
[start week]<=Today()-7 && [end date]>=Today()-7,"Last Week" ,
[Week Name]
)
and select this week
refer: https://www.youtube.com/watch?v=hfn05preQYA
- Anonymous5 years agoNot applicable
Thanks for that - I've added the additional columns in my Date Table - which is helpful - having a dynamic measure of 'This Week', 'This Month' and 'This Year' is super helpful.
Ideally I'd like this to show in a Matrix as a column - I've worked around this by just creating multiple matrixes:See the below Images (I've blacked out all sensitive info) to give an idea of what I'm trying to achieve,This is the desired formatThis is what I currently have