Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |