I have the following formula to look for multiple criteria
Instead of using the actual values (i.e. "71.10.5000", "71.10.50100", etc.) I want to reference the values in cells (i.e. Cell T1 = 71.10.50000)
When I change the "71.10.5000" to T1, the formula stops working. Is there a way to reference cells in this formula or is there a different formula that would work?
VBA Code:
=SUM(SUMIFS(TBL_GL_Coins[Debits],TBL_GL_Coins[GL Account],{"71.10.50000","71.10.50100","71.10.50200","71.10.50300","71.10.50600"}))
Instead of using the actual values (i.e. "71.10.5000", "71.10.50100", etc.) I want to reference the values in cells (i.e. Cell T1 = 71.10.50000)
When I change the "71.10.5000" to T1, the formula stops working. Is there a way to reference cells in this formula or is there a different formula that would work?