Forum Discussion
Anonymous
7 years agoNot applicable
DAX Formula
hi experts, Having trouble to creat a meature to match a vlaue newcmeaure = Tablename[columnname] = 'Agreed' I ma haviung trouble to get the syntax right, urgent thanks
- 7 years ago
Hi Anonymous,
Sorry not sure what you are trying to accomplish with this measure, a measure that calculates a value would look something like:
measure = Calculate(sum('table'[column]), 'table'[column] = "value")
richbenmintz
7 years agoResident Rockstar
Hi Anonymous,
Sorry not sure what you are trying to accomplish with this measure, a measure that calculates a value would look something like:
measure = Calculate(sum('table'[column]), 'table'[column] = "value")Anonymous
7 years agoNot applicable
Thanks for quick respond , new in DAX and I hope I can use your experties more :)
- v-chuncz-msft7 years agoCommunity Support
Anonymous,
You may also take a look at https://www.sqlbi.com/articles/filter-arguments-in-calculate/.