The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All,
I'm trying to write a DAX Measure to determine how many transactions are breakfast vs lunch. This is what I have but its not working. Any idea what I'm doing wrong?
Solved! Go to Solution.
@am_i_really Sorry, I had some syntax errors in that, try this:
Measure Breakfast =
VAR __Table =
ADDCOLUMNS(
'Table',
"__Type", IF([Order Time] < TIME(11,00,00),"Breakfast", "Lunch")
)
VAR __Result = COUNTROWS(FILTER(__Table, [__Type] = "Breakfast"))
RETURN
__Result
@am_i_really Try below. However, this is very dependent on the format of your Order Time column, can you post an example of your data?
Measure Breakfast =
VAR __Table =
ADDCOLUMNS(
'Master',
"__Type", IF([Order Time]) < TIME(11,00,00),"Breakfast", "Lunch")
)
VAR __Result = COUNTROWS(FILTER(__Table, [__Type] = "Breakfast"
RETURN
__Result
@am_i_really Sorry, I had some syntax errors in that, try this:
Measure Breakfast =
VAR __Table =
ADDCOLUMNS(
'Table',
"__Type", IF([Order Time] < TIME(11,00,00),"Breakfast", "Lunch")
)
VAR __Result = COUNTROWS(FILTER(__Table, [__Type] = "Breakfast"))
RETURN
__Result
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |