Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello Team,
I have a calculated column which is POR
The formula is [Qty]*[Cost]
Is there a way to create a placeholder field using the POR to divide them into two classification:
POR > 300000 THEN "Above 300k"
POR < 300000 THEN "Below 300k'
I tried creating IF but it does not filter correctly.
@Anonymous
Seems it is the problem of relationship. Without the pbix model it is hard to detect. You can try create a measure instead a column:
You can create another calculated column using IF statement.
Column_POR = IF(TableName[POR]>=300000, "Above 300k", "Below 300k")
i got values more than 300k, but it does show in the filter for values above 300000
hello @Anonymous this is not working properly i do not know why
You can create another calculated column based on this calcualted column using IF statement.
IF(Table[POR] >300000, "Above 300k", "Below 300k")
Proud to be a Super User!
I did this but it does not have above 300k selection, although i got some POR with more than 300k,
Formula:
Try this:
That's indeed strange. I thought the iterator would work (getting the correct row context for each historical por record).
My last try would be to iterate of each row like this:
Can you post a screenshot from the table view where you applied the formular for the calc. column?
Please also send a screenshot from the calc. of POR.
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |