This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi everyone!
I have a column with prices, and another column and another table with the acronyms C and D. That are Credit or Debit.
Tables are linked by a unique ID between them.
I need to turn prices to negative, when the acronym is D.
I am using SQL Server Analysis Services Tabular, how could I do this with DAX?
Solved! Go to Solution.
Hi ralsouza,
Create a calculate column in table Toyota - Valores using DAX below:
Conditional Prices =
IF (
RELATED ( 'Toyota - Lancamentos'[tipolancto] ) = "D",
- [Valor Toyota],
[Valor Toyota]
)
Regards,
Jimmy Tao
Hi ralsouza,
Create a calculate column in table Toyota - Valores using DAX below:
Conditional Prices =
IF (
RELATED ( 'Toyota - Lancamentos'[tipolancto] ) = "D",
- [Valor Toyota],
[Valor Toyota]
)
Regards,
Jimmy Tao
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 38 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 25 | |
| 25 |