• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Sumifs multiple criteria with column

achu

Member
Dear Expart,

I would like to thank you first,

i am trying to sumifs but not complet

my formula is :--
SUM(SUMIFS('[Vinit-Master Data.xlsx]Dump'!$L:$L,'[Vinit-Master Data.xlsx]Dump'!$A:$A,"Sold",'[Vinit-Master Data.xlsx]Dump'!$C:$C,"Orion-1",'[Vinit-Master Data.xlsx]Dump'!$J:$J,{"4 BHK",""}))ou

i want to convert this VBA Code,


kindly help me

again thank you...
 
Please find attachd doc. as you requested

again thank you for your help advance...,
 

Attachments

  • datas.xlsx
    16.6 KB · Views: 5
Is this...

Code:
Sub sum1()
Dim str_f As String
str_f = "SUM(SUMIFS(Data!L:L,Data!A:A,""sold"",Data!C:C,Formula!C5,Data!J:J,{""4 BHK"";""""}))"

[d8] = Evaluate(str_f)

End Sub
 
Back
Top