Forum Discussion
month dax
Hello!
First, I wish to apologize for my English.
I am new to power bi and I would like some help on a DAX function.
In my file I have two columns, a column ("needs") with the quantities of the needs and another column date ("date of need") which shows me the date for which I need them.
I am looking for a function dax, which gives me the needs M + 1, M + 2, M + 3 ... according to today compared to my two columns.
I hope my question is understandable
Hi Anonymous
calculated column is static, it doesn't change through dates.
measure can't be added to the column header of the matrix.
So i'm afraid it is impossible as you expected.
We can only add "date" column in the column header.
month dax = IF(DATEDIFF(TODAY(),MAX('Table'[date]),MONTH)>=1,FORMAT([today],"mmmm")&" M"&"+"&DATEDIFF(TODAY(),MAX('Table'[date]),MONTH))Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
5 Replies
- AnonymousNot applicable
Hi,
You would need to use the Function Month() to get the Month for the Date. Add this as a new column in the Table. Once this is done, You will need to Unpivot the Table. You could do this by Edit Queries -> Select the Column of the Table that You want to Unpivot -> Transform -> Unpivot Columns.
Best Regards,
Vignesh M
If what I suggested worked for you feel free to Drop a "Kudos" and Consider to "Accept as Solution" if I solved your Issue :)- AnonymousNot applicable
Hello Mvignesh53,
I tried your solution, I just have a little problem :
when I unpivot the column month [month()] I can not get the desired result.
I want the months in columns, the results of these columns show me the needs by month, and by article code, (I cannot display the item codes in the capture, because they are confidential)
Thanks for your help !
- v-juanli-msftCommunity Support
Hi Anonymous
Which output would you like?
I create a measure
month dax = IF(DATEDIFF(TODAY(),MAX('Table'[date]),MONTH)>=1,"M"&"+"&DATEDIFF(TODAY(),MAX('Table'[date]),MONTH))Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- AnonymousNot applicable
Hello @v-juanli-msft,
Thank you for your formula,
That is exactly what I wanted, but would it be possible to add the months in column ? ( to create a new column column for later)
Here is the current example that I have :
I want to create a column that meets all needs per month (M + 1 N, M + 1 N + 1, ...)
Here is an example of what I would like:
is it possible ?
Thanks !!
- v-juanli-msftCommunity Support
Hi Anonymous
calculated column is static, it doesn't change through dates.
measure can't be added to the column header of the matrix.
So i'm afraid it is impossible as you expected.
We can only add "date" column in the column header.
month dax = IF(DATEDIFF(TODAY(),MAX('Table'[date]),MONTH)>=1,FORMAT([today],"mmmm")&" M"&"+"&DATEDIFF(TODAY(),MAX('Table'[date]),MONTH))Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.