This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello All
How to get this custom sort applied in tale matrix on Date column when date vaue is TBD, display project at the end of rows or as last project . Project,Date column is dynamic feed from oracle source.
Thanks
Rp
Solved! Go to Solution.
Hi @RMRaptor,
You can create a new table with corresponding date field values in text format and custom column with index based on date values to use on 'sort by column' property. (use if statement to check if current value equal to TBD and return a larger number to keep its order to bottom)
SortTable =
ADDCOLUMNS (
VALUES ( 'Sample'[Date] ),
"Index",
IF (
[Date] = "TBD",
COUNTROWS ( 'Sample' ),
COUNTROWS (
FILTER (
'Sample',
[Date] <> "TBD"
&& DATEVALUE ( [Date] ) <= DATEVALUE ( EARLIER ( 'Sample'[Date] ) )
)
)
)
)
Regards,
Xiaoxin Sheng
@Xiaoxin Sheng
Thank you , It worked.
RM
Hi @RMRaptor,
You can create a new table with corresponding date field values in text format and custom column with index based on date values to use on 'sort by column' property. (use if statement to check if current value equal to TBD and return a larger number to keep its order to bottom)
SortTable =
ADDCOLUMNS (
VALUES ( 'Sample'[Date] ),
"Index",
IF (
[Date] = "TBD",
COUNTROWS ( 'Sample' ),
COUNTROWS (
FILTER (
'Sample',
[Date] <> "TBD"
&& DATEVALUE ( [Date] ) <= DATEVALUE ( EARLIER ( 'Sample'[Date] ) )
)
)
)
)
Regards,
Xiaoxin Sheng
Check out the May 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 |
|---|---|
| 32 | |
| 26 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 48 | |
| 27 | |
| 23 | |
| 20 |