Forum Discussion
ASAP - Need formula
- 6 years ago
Hi Irussaa ,
If you want a DAX formula, you could try the following DAX:
Column = "W" & WEEKNUM ( 'DateDim'[WeekEnding], 1 ) & " " & MONTH ( 'DateDim'[WeekEnding] ) & "/" & DAY ( 'DateDim'[WeekEnding] )
Hi Irussaa
ColumnName =
Text.Combine({[Week]," ",Number.ToText([MonthN]),"/", Number.ToText(Date.Day
(Date.EndOfWeek([date]))})
Tell me if this works, since I did not have your table, I did this free hand. This is in Power Query.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos πare nice too.
Nathaniel
Hi Nathaniel_C
I try to apply
ColumnName =
Text.Combine({[Week]," ",Number.ToText([MonthN]),"/", Number.ToText(Date.Day
(Date.EndOfWeek([date]))})
Inside my data set:
[Week]
[MonthN]
Date.Day
(Date.EndOfWeek([date])
- Nathaniel_C6 years agoCommunity Champion
Hello Irussaa ,
Here is a link to Power Query Power Query . It is the best place to add Calculated Columns.
However this is a way that you can do it in Power BI.WE= table[Week] && " " && table[MonthN] && "/" && Day(table[Date]+ 7-WEEKDAY(table[Date],1))In your post you show a table with columns. I took the name of the columns from that picture. You will want to replace "table" in my formula with your table name.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos πare nice too.
Nathaniel