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.
Hello dear community,
I would like to create a new column on my Calendar Table who gives the time range instead of the week num. For example :
For Week number 1 of 2023, ill get a value like "02/01 to 08/01".
ChatGPT tried to give me this solution, who only works for the first year 2023 :
@LZNPM Try:
Range =
VAR __WeekNum = [WeekNum]
VAR __Year = YEAR([Date])
VAR __Min = MINX(FILTER('Dates', [WeekNum] = __WeekNum && YEAR([Date]) = __Year), [Date])
VAR __Max = MAXX(FILTER('Dates', [WeekNum] = __WeekNum && YEAR([Date]) = __Year), [Date])
VAR __Return = FORMAT(__Min, "dd/MM") & " to " & FORMAT(__Max, "dd/MM")
RETURN
__Return
Thank you very much Greg ! Your code works very well... until the year switch ! For all weeks in 2023 the correct time range is written, but for the first week of 2024, the value of the new column is "01/01 to 31/12". How can I correct it ? If you have an idea.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
78 | |
41 | |
40 | |
35 |