Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Gokul_G16
Resolver I
Resolver I

Using measure how to add the other table some number into current table

Dear All,

Good Day,

I would like to need your support and  exectue the below shown calculation in DAX. Since have tried some All and ALL Expected calculation it won't come sorted out. need you help on.

Important
In that  b row should add manully 10 number the same row against B row category dax.

 

    
 dataAdditional valueResult column
Categorylicenseprojectedutilized
a50 50
b701080
c90 90
d110 110
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Gokul_G16 

 

You can create two calculated columns as follow.

 

projected = IF('Table'[Category] = "b", 10, BLANK())
Utilized = [license] + [projected]

 

 

vxuxinyimsft_0-1707890522399.png

Is this the result you expect?

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Gokul_G16 

 

You can create two calculated columns as follow.

 

projected = IF('Table'[Category] = "b", 10, BLANK())
Utilized = [license] + [projected]

 

 

vxuxinyimsft_0-1707890522399.png

Is this the result you expect?

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors