Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi there! I have a field called 'Stage' with three different values, 'Complete', 'Execution' and 'Approved'. If an item is 'Approved' I would like to use the value in a field called Total Project Spend, BUT if the value is 'Complete' or 'Execution' then I'd like to use the value in a field called Combined LBE. Is there a way to apply this logic to a visualization? Please let me know what you think. Thanks!
Solved! Go to Solution.
Thanks for the guidance! Here's what I ended up getting to work:
#"Added Custom1" = Table.AddColumn(#"Changed Type1", "NewMoney", each if [Stage] = "Approved" then [TotalProjectSpend] else [Combined LBE]),
#"Changed Type2" = Table.TransformColumnTypes(#"Added Custom1",{{"NewMoney", Currency.Type}})
Sounds like you need to create a custom column with an IF statement. This would be something like
OutputField = IF( [Stage] = "Approved", [Total Project Spend], [Combined LBE] )
This code assumes all your fields are in the same table. If they are not, you'll need to expand on the DAX code.
Thanks for the guidance! Here's what I ended up getting to work:
#"Added Custom1" = Table.AddColumn(#"Changed Type1", "NewMoney", each if [Stage] = "Approved" then [TotalProjectSpend] else [Combined LBE]),
#"Changed Type2" = Table.TransformColumnTypes(#"Added Custom1",{{"NewMoney", Currency.Type}})
User | Count |
---|---|
81 | |
75 | |
70 | |
42 | |
36 |
User | Count |
---|---|
114 | |
56 | |
52 | |
43 | |
42 |