Forum Discussion
Anonymous
4 years agoNot applicable
How to Add a New value in an existing Column?
Hi All, I have a Column named "Category" which consists of two values (Say) A and B. Now I need to add an additional value called "C" without any condition. My Problem is that I cannot use Custom...
- 4 years ago
Hi Anonymous
you can use UNION dax code to create a new table and add a new value to category column:
Table 2 =Union('Table',row("Category","C"))If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
VahidDM
Super User
4 years agoHi Anonymous
you can use UNION dax code to create a new table and add a new value to category column:
Table 2 =
Union('Table',row("Category","C"))
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/