Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have 4 columns - Category, Col A, Col B and Col C. Column C is a measured column (A+B).
3 rows are there. Category has
ABC in 1st row
XYZ in 2nd row
MNO in 3rd row
Col A has -
1 in 1st row
4 in 2nd row
7 in 3rd row
Col B has -
6 in 1st row
4 in 2nd row
9 in 3rd row
Col C has -
7 in 1st row
8 in 2nd row
16 in 3rd row
| Category | Col A | Col B | Col C |
| ABC | 1 | 6 | 7 |
| XYZ | 4 | 4 | 8 |
| MNO | 7 | 9 | 16 |
Kindly imagine / visualize the above data as a table, could not paste (not sure sure if pasted correctly)
Now can I manually change the value 8 in Col C (which is against Category XYZ) to may be 10, 11 or whatever?
The other 2 values remain as it is.
How can I do this. Thanks in advance for your help.
Solved! Go to Solution.
You can modify calculate column as below:
Col C = IF('Table'[Category] = "XYZ", 10, 'Table'[Col A] + 'Table'[Col B])
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can modify calculate column as below:
Col C = IF('Table'[Category] = "XYZ", 10, 'Table'[Col A] + 'Table'[Col B])
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.