Forum Discussion
BishwaR
4 years agoHelper V
Duplicate Columns
I have two columns one With Customer Name other With Salary. I need to create duplicates with different names by using DAX. I used the following dax CALCULATE(MAX(CUSTOMER NAME)) but I was not able ...
- 4 years ago
Hi BishwaR ,
You do not specify, but you can write two measures.
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.
NathanielDup Name = Max ('Table (6)'[Name]) Dup Salary= Max ('Table (6)'[Salary])
v-xiaotang
4 years agoCommunity Support
Hi BishwaR
You can try
Measure1 = SELECTEDVALUE('Table'[CUSTOMER NAME])
or
Measure2 = MAX('Table'[CUSTOMER NAME])
or
Measure3 = MIN('Table'[CUSTOMER NAME])
If you want to create a new column, just use the method recommended by tomfox.
If it is in the power query, just click the duplicate column button.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
- BishwaR4 years agoHelper V
Thank you so much for the help