Forum Discussion
Combine column
- 2 years ago
Hii butterscotch
In a date column you used in visuals or tables, I will act as a hierarchy level in the below image (1. before).1. before
Select the table visual, and in the visualization pane, right-click the date column and change the hierarchy to the original date as shown in the below image.
Did I answer your question?
Mark my post as a solution, this will help others...!
Hit the kudo also,
Thank you.
Hi, butterscotch
Based on the information you have provided, Here are my answers to your questions.
- Create a new table as shown below.
- Create a new column and enter the following DAX code.
Column =
'Table'[Month] & "-" & RIGHT(FORMAT('Table'[Year],"0000"),2)
- What you end up with is what you need.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- butterscotch2 years agoHelper II
Thank you!