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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. 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
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors