Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi @ashmitp869
To handle the sorting in your table visual and ensure blank rows appear last while sorting dates in ascending order,
You can create a calculated column in your table that assigns a numeric value based on whether the date is blank or not. Here's an example DAX formula:
Step 1 - Create a sorting column using dates
SortOrder = IF(ISBLANK(Table[Date]), 1, 0)
This creates a column sort order where
Hi @ashmitp869
To handle the sorting in your table visual and ensure blank rows appear last while sorting dates in ascending order,
You can create a calculated column in your table that assigns a numeric value based on whether the date is blank or not. Here's an example DAX formula:
Step 1 - Create a sorting column using dates
SortOrder = IF(ISBLANK(Table[Date]), 1, 0)
This creates a column sort order where
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 41 | |
| 22 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 62 | |
| 45 |