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 |
|---|---|
| 57 | |
| 43 | |
| 32 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 27 | |
| 24 |