Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
How to write this simple query in DAX -
select columnA from table1 where ColumnBDate is Today().
Solved! Go to Solution.
You may refer to the following DAX.
Table =
SELECTCOLUMNS (
FILTER ( table1, table1[ColumnBDate] = TODAY () ),
"columnA", table1[columnA]
)
You may refer to the following DAX.
Table =
SELECTCOLUMNS (
FILTER ( table1, table1[ColumnBDate] = TODAY () ),
"columnA", table1[columnA]
)
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 32 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 66 | |
| 42 | |
| 27 | |
| 25 |