This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Dear guys,
I just started to learn Power BI and try to make a calendar table using DAX.
Everything is fine at the beginning, however when I try to format the month as "MMMM", it returns only December and January.
Anything wrong with my DAX input ??
Solved! Go to Solution.
Are there maybe spaces on the end of the ones that are not returning a value? Instead of "30 days" it is "30 days "?
Add a column that is just the LEN. They should all be 7.
Length = LEN ( Coursera__Inventory[RestockingFrequency] )
Just read the days at the beginning of the sring and add that to the LastRestocked like this.
Next Restock =
VAR _Days = LEFT (
Coursera__Inventory[RestockingFrequency],
FIND ( " ", Coursera__Inventory[RestockingFrequency] ) - 1
)
RETURN
CONVERT ( Coursera__Inventory[LastRestocked] + _Days, DATETIME )
I can understand the way of your doing, but whats wrong with my input ??
I wanna explore as much DAX as possible, because i'm current learning.
Based on the nested ifs, by right the DAX should return me a value for each row,
but why some rows are NULL, even if the logical test is True?
Sry, I have another question again. Also about date.
Something wrong with my nested if ??
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 25 | |
| 24 |