Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!