Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi:
Any suggestions on why I'm getting this error message:
=Sum([Month.autoCalendar.YearMonth] = {'2017-May'}[Cases-Verified])/(sum([Month.autoCalendar.YearMonth] = {'2017-May'}[Cases-Verified])+ sum([Month.autoCalendar.YearMonth] = {'2017-May'}[Cases Unbillable]))
Thank you!
Megan
Try below expression. You missed the Set Modifier and braces.
=Sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases-Verified])/(sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases-Verified])+ sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases Unbillable]))
Try below expression. You missed the Set Modifier and braces.
=Sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases-Verified])/(sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases-Verified])+ sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>}[Cases Unbillable]))
May be try this
=Sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>} [Cases-Verified])/(sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>} [Cases-Verified]) + Sum({<[Month.autoCalendar.YearMonth] = {'2017-May'}>} [Cases Unbillable]))
Perfect! Thank you!