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 all,
I have a slicer in which there is a calculated column value.
I want to make a custom sort like:
Current
1 Dat PD
2 - 5 PD
6 - 15 PD
16 - 30 PD
31+ PD
but since this is a calculated column I could not do it on Power BI query editor since it is not there.
I tied adding a table and putting index and bringing that index near to this calculated column by LOOKUPVALUE, there occurs a circular dependency
Any other way that can help me?
Solved! Go to Solution.
Hi @YavuzDuran,
for this you should use the function: "Sort one column by another column"
Acct Standing Index =
IF (
AllAccounts[Actual # Days Past Due] = 0,
0,
IF (
AllAccounts[Actual # Days Past Due] = 1,
1,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 1,
AllAccounts[Actual # Days Past Due] < 6
),
2,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 5,
AllAccounts[Actual # Days Past Due] < 16
),
3,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 15,
AllAccounts[Actual # Days Past Due] < 31
),
4,
IF ( AllAccounts[Actual # Days Past Due] > 30, 5, 99 )
)
)
)
)
)
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @YavuzDuran,
for this you should use the function: "Sort one column by another column"
Acct Standing Index =
IF (
AllAccounts[Actual # Days Past Due] = 0,
0,
IF (
AllAccounts[Actual # Days Past Due] = 1,
1,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 1,
AllAccounts[Actual # Days Past Due] < 6
),
2,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 5,
AllAccounts[Actual # Days Past Due] < 16
),
3,
IF (
AND (
AllAccounts[Actual # Days Past Due] > 15,
AllAccounts[Actual # Days Past Due] < 31
),
4,
IF ( AllAccounts[Actual # Days Past Due] > 30, 5, 99 )
)
)
)
)
)
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Perfect. Worked. Thank you.
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 |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |