Forum Discussion

bonjourposte's avatar
bonjourposte
Helper V
2 years ago
Solved

How do I add three variables?

I want monthly totals of how many advances we sent out, and how many collections we took in.   Advances worked fine because there is only one source of money going out.   My measure was fairl...
  • AlexisOlson's avatar
    2 years ago

    Does this also return a blank?

     

    NumofCollections =
    CALCULATE (
        COUNTROWS ( TRANHIST ),
        TRANHIST[TRAN_SUBTYPE] IN { "CORRESP", "PAC", "REGINST" }
    )