Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
7 |