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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
prasa
Helper I
Helper I

Query in DAX

How to write this simple query in DAX -

select columnA from table1 where ColumnBDate is Today(). 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@prasa,

 

You may refer to the following DAX.

Table =
SELECTCOLUMNS (
    FILTER ( table1, table1[ColumnBDate] = TODAY () ),
    "columnA", table1[columnA]
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@prasa,

 

You may refer to the following DAX.

Table =
SELECTCOLUMNS (
    FILTER ( table1, table1[ColumnBDate] = TODAY () ),
    "columnA", table1[columnA]
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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