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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
refint650
Helper III
Helper III

Replace values from column1 to another using dax

 

Hello All

 

How to write expression in a dax to replace employee record historical vlaue with current value for department & role.  In General when people change org or department or they get promoted these scenarios come across how do we handle  them in expression.

 

 

1) if "Prior dept" column is blank or null or unmapped  values then  replace value from "Emp Dept" else Prior Dept

2) If Prior Role is blank or null  value then replace value from Emp role else "Prior Role

 

Thanks

Vs

 

refint650_0-1708548554749.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @refint650 ,

 

Hope all is going well.

 

Please follow these steps:

 

1. This is the original data I created:

vhuijieymsft_0-1708592744203.png

 

2. To achieve your needs, I created two calculated columns, the DAX syntax is as follows:

Calculated Dept =
IF('Table1'[Prior Dept] = blank() || [Prior Dept] = "unmapped",'Table1'[Emp Dept],'Table1'[Prior Dept])

Calculated Role=
IF('Table1'[Prior Role] = blank() || [Prior Role] = "unmapped",'Table1'[Emp Role],'Table1'[Prior Role])

 

3. Drag them to the report page for display. The effect is as follows:

vhuijieymsft_1-1708592744206.png

 

pbix file is attached.

 

If you have any further questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @refint650 ,

 

Hope all is going well.

 

Please follow these steps:

 

1. This is the original data I created:

vhuijieymsft_0-1708592744203.png

 

2. To achieve your needs, I created two calculated columns, the DAX syntax is as follows:

Calculated Dept =
IF('Table1'[Prior Dept] = blank() || [Prior Dept] = "unmapped",'Table1'[Emp Dept],'Table1'[Prior Dept])

Calculated Role=
IF('Table1'[Prior Role] = blank() || [Prior Role] = "unmapped",'Table1'[Emp Role],'Table1'[Prior Role])

 

3. Drag them to the report page for display. The effect is as follows:

vhuijieymsft_1-1708592744206.png

 

pbix file is attached.

 

If you have any further questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

lbendlin
Super User
Super User

You cannot replace/modify column values with DAX. Best you can do is add another calculated column.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors