We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello everyone!!!
I am performing the following measurement in dax:
CALCULATION =
VAR OPERATION = calculate(
SUM(Table1[amount]),
Table1[black/white]="white"
)
VAR OPERACION2 = calculate(
sum(Tabla1[monto2]),
Tabla1[blanco/negro]="blanco"
)
TOTAL VAR = DIVIDE(operation,operation2,0)
RETURN
TOTAL
What I need is that when the field [black/white] = "black" puts as a value "NC" otherwise do the calculation I wrote at the beginning. Try to put an if or switch but I do not know how to make it read the value of the column.
Can you help me? Thank you.
Thanks for the reply and suppose I put Blank, as I do??? that's what I need to know how to put the if within the measure I wrote. Thank you.
CALCULATION =
if(Table1[black/white]="black","NC",
format(divide(SUM(Table1[amount]),sum(Table1[amount2])),"#.#%"))
or (for blank)
CALCULATION =
if(Table1[black/white]="white",
divide(SUM(Table1[amount]),sum(Table1[amount2])),"#.#%")
This may or may not work depending on your setup. Provide sample data if you want more assistance.
You cannot return a text string or a number in the same measure. All results need to be of the same type (or BLANK). Change your measure to return BLANK instead of NC, or convert all output to text.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 41 | |
| 34 | |
| 25 |