Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn 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 |
|---|---|
| 50 | |
| 41 | |
| 32 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 72 | |
| 37 | |
| 27 | |
| 24 |