replace values based on another column
2 TopicsReplacing valuse based on ID column (Conditional Formatting)
Hello guys, I would like to replace the "63" value in the TT_ACT_ID column if the project number is "168907" in column TT_PRJ_ID. I have used replaced value with a if formula but it doesn't work. I've tried a couple of dax formula, see below. The formula I've used are: = Table.ReplaceValue(#"Renamed Columns", 63, each if [TT_PRJ_ID]= "168907" then "13" else [TT_ACT_ID] , Replacer.ReplaceValue,{"TT_ACT_ID"}) = Table.ReplaceValue(#"Renamed Columns", each [TT_ACT_ID], each if [TT_PRJ_ID]= "168907" and [TT_ACT_ID]= "63" then "13" else [TT_ACT_ID] , Replacer.ReplaceValue,{"TT_ACT_ID"}) Thanks guys! Greetings, Ka-LokSolved600Views0likes1CommentReplace a cell in one column if another columns cell equals something
I have the following two columns Current State Service Type Resource Type SCM301 FT101 SCM301 GT101 SCM100 FT101 SCM100 HM500 SCM075 KL102 SCM050 KL102 SCM100 KL103 GL200 FT101 I want to do the following If "Resource Type" = FT101 Then "Service Type" = FX008, Else keep Service Type as is Here is what I want to end up with Desired State Service Type Resource Type FX008 FT101 SCM301 GT101 FX008 FT101 SCM100 HM500 SCM075 KL102 SCM050 KL102 SCM100 KL103 FX008 FT101 Any suggests on how to go about this?Solved1.2KViews0likes3Comments