Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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-Lok
Solved! Go to Solution.
Hi,
Your data format in [TT_PRJ_ID] is INT so by remowing "" in your condition ([TT_PRJ_ID]=168907 ) you should be good to go.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Hi,
Your data format in [TT_PRJ_ID] is INT so by remowing "" in your condition ([TT_PRJ_ID]=168907 ) you should be good to go.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |