Forum Discussion
Anonymous
6 years agoNot applicable
How to create DAX for below query from SQL
select MAX(SeqID) from [dbo].[CT] where [MonthId]=1 Here, CT is a calendar table.
- 6 years ago
Hi Anonymous
try this
Measure = calculate(MAX(CT[SeqID]);CT[MonthId]=1)
- 6 years ago
Hi Anonymous ,
Try CALCULATE (MAX(CT[SeqID], CT[MonthID] = 1)
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Nathaniel_C
6 years agoCommunity Champion
Hi Anonymous ,
Try CALCULATE (MAX(CT[SeqID], CT[MonthID] = 1)
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel