Hi Experts,
I am using the EDNA code to make this calendar.
Which gives Date Hierarchy that is being used ion the visual.
Now the month name shows full name which i do not want as its taking more space.
I only want to show 3 alphabets month name like, JAN, SEP, OCT, DEC.
How can i do that.
Thank you for your guidance.
Don’t use the date hierarchy. Instead use the Year and Month Short columns. Or, if you need the month and year together as single label, use the Month&Year column (I’m not sure if I got that column name right, but there is a column in the Date table that has month and year together.
If you are using the mcode for the EDNA date table
the code is in the mcode. looks like you are not using the date table properly.
this is the code in the mcode as per your txt file.
InsertMonthShort = Table.AddColumn( InsertMonthName, “Month Short”, each Text.Proper( Date.ToText([Date], “MMM”)), type text)
Dear @DaveC thankyou for guidance, i was using Hierarchy that was creating problem.
I used year and short month name and it resolved.
Thank you once again