Learn MS Excel - Video 402- VBA FUNCTIONS - COUNTIF SUMIF

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025

Комментарии •

  • @deepakvaishy7754
    @deepakvaishy7754 4 года назад +1

    Great✌️👌

  • @gabrielmolefe8599
    @gabrielmolefe8599 7 лет назад

    Thank you very much. I have already looped the data that I was working on at work before even watching the next video. You are a star

  • @rakeshkumarmadella7955
    @rakeshkumarmadella7955 7 лет назад

    Hello sir wonderful thank u.. very nice

  • @PrakashPraaku
    @PrakashPraaku 7 лет назад

    Thanks for this video, it was really helpful in my job, keep uploading such great videos,

  • @archanaaa2514
    @archanaaa2514 4 года назад

    Sir, how to use countif in vba for counting d interior cell color?

  • @gabrielmolefe8599
    @gabrielmolefe8599 7 лет назад

    Hello Ajay
    I am very comfortable with sumifs and countifs, thanks for the videos. I m dealing with large data set at work. I want to write a code using sumifs in a clean sheet referencing to a different workbook saved in another folder. Which videos do you recommend

    • @AjayKumarparmar
      @AjayKumarparmar  7 лет назад

      If we know basics doesn't matter if function is being used within sheet or across sheets or From other wotbooks. Just go and select table wherever it is. Excel will automatically create the sheet name or workbook name prefixed before tables..

    • @gabrielmolefe8599
      @gabrielmolefe8599 7 лет назад

      I meant a VBA code that uses sumifs referencing anather workbook

    • @AjayKumarparmar
      @AjayKumarparmar  7 лет назад

      Please check Excel Vba function Playlist

  • @gabrielmolefe8599
    @gabrielmolefe8599 7 лет назад

    Good day
    I need to sum a dynamic. I am using a code below and it is not working
    Cells(row, 2).Value = WorksheetFunction.Sum(Sheets("All Claims").Cells(Sheets("All Claims").Rows.Count, 22).End(xlUp).row
    My data is in sheet "All claim" column 22. Please assist

    • @AjayKumarparmar
      @AjayKumarparmar  7 лет назад +1

      Please use range... worksheet.function.sum(sheets ("all claims").range ("f2:F4")). Ofcourse you can range dynamic by using variable to find last row... Hope that helps..
      Watch my video on range introduction... playlist name is Excel Vba introduction

    • @gabrielmolefe8599
      @gabrielmolefe8599 7 лет назад

      Thanks a lot> I cant stop jumping. My code is running perfect
      Cells(row, 2).Value = WorksheetFunction.SumIfs(Sheets("Sheet2").Range("V2:V" & LastRow), Sheets("Sheet2").Range("J2:J" & LastRow), Sheets("Sheet1").Cells(row, 1), Sheets("Sheet2").Range("A2:A" & LastRow), Sheets("Sheet1").Range("J2"))

    • @AjayKumarparmar
      @AjayKumarparmar  7 лет назад

      wow wow...awesome..