Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
RMRaptor
Frequent Visitor

Custom Date Sort

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.

 

RMRaptor_1-1684764305437.png

 

Thanks

Rp

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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)

Custom Sorting in Power BI 

 

SortTable =
ADDCOLUMNS (
    VALUES ( 'Sample'[Date] ),
    "Index",
        IF (
            [Date] = "TBD",
            COUNTROWS ( 'Sample' ),
            COUNTROWS (
                FILTER (
                    'Sample',
                    [Date] <> "TBD"
                        && DATEVALUE ( [Date] ) <= DATEVALUE ( EARLIER ( 'Sample'[Date] ) )
                )
            )
        )
)

 

1.PNGRegards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
RMRaptor
Frequent Visitor

@Xiaoxin Sheng 

 

Thank you , It worked. 

 

RM

Anonymous
Not applicable

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)

Custom Sorting in Power BI 

 

SortTable =
ADDCOLUMNS (
    VALUES ( 'Sample'[Date] ),
    "Index",
        IF (
            [Date] = "TBD",
            COUNTROWS ( 'Sample' ),
            COUNTROWS (
                FILTER (
                    'Sample',
                    [Date] <> "TBD"
                        && DATEVALUE ( [Date] ) <= DATEVALUE ( EARLIER ( 'Sample'[Date] ) )
                )
            )
        )
)

 

1.PNGRegards,

Xiaoxin Sheng

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.