Forum Discussion

TJCappy's avatar
TJCappy
Frequent Visitor
3 years ago
Solved

The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.

Hi All,   Based on the sales for a given period, I am trying to calclate the number of clients a sales rep will need to have to attain their sales goal.   I have the following data and can't seem...
  • tamerj1's avatar
    3 years ago

    Hi TJCappy 

    please try

    Clients Needed for Target =
    SUMX (
    'Targets',
    DIVIDE (
    'Targets'[2023 Annual Target],
    [CNM Distinct Client Gross sales Average]
    )
    )