Send Bulk WhatsApp Messages from Excel

Bulk WhatsApp Messages

Send Bulk WhatsApp Messages from Excel || Free 2024

Introduction :

Now you can send bulk WhatsApp messages in just one click. To send bulk or single WhatsApp messages without saving contact numbers in your phone or Laptop.
We can use multiple processes to send bulk WhatsApp messages but mostly all processes are paid and are free up to a limit only. By choosing this process you can send unlimited messages for unlimited times in just one click.

Process :

We are going to use VBA(Visual Basic for Applications) in Excel, it is a programming language that empowers users to automate tasks and create personalized solutions within Microsoft Excel. It enables users to create macros, which are instructions that automatically perform repetitive tasks.
We are going to enable and create macros in excel. Here I will share the macros code and a sample file in my telegram channel. You can download it from there.

System Requirements : 

  1. WhatsApp Desktop Application –
  2. Latest Microsoft Excel –
  3.  Windows – 7/8/10/11 and updated versions
  4. Minimum Ram Required – 4 GB

Steps To Enable Macros & VBA Setting –

  1. Download File From Telegram Group
  2. Open Downloaded file
    open file
  3. Open File section and go to More Options
    file section
  4. Then click on Trust center
  5. Open Trust Center Setting
    Trust Center
  6. Enable VBA macros and click on OK –
    Enable macros
  7. Now open Customize ribbons to enable Developer Option
  8. Go to Macros settings
    Enable Developer
  9. Now choose Developer option to access the macros –
  10. Apply settings and you are now ready to Send Bulk Messages
  11. Fill all the details required in the sheet i.e. Phone number , Name, and the Dynamic message that you want to send .
  12. You can enter unlimited contact numbers to Send Bulk WhatsApp Messages for free.

Macro VBA code for reference (If you want to create your own Sheet)

Here I am sharing macro code that I have used in this sheet. You can also create your own sheet by changing row and column numbers in macros.

Sub WhatsAppMsg()
Dim LastRow As Long
Dim i As Integer
Dim strip As String
Dim strPhoneNumber As String
Dim strMessage As String
Dim strPostData As String
Dim IE As Object
LastRow = Range(“A” & Rows.Count).End(xlUp).Row
For i = 2 To LastRow

strPhoneNumber = Sheets(“Data”).Cells(i, 3).Value

strMessage = Sheets(“Data”).Cells(i, 4).Value

‘IE.navigate “whatsapp://send?phone=phone_number&text=your_message”
strPostData = “whatsapp://send?phone=” & strPhoneNumber & “&text=” & strMessage
Set IE = CreateObject(“InternetExplorer.Application”)
IE.navigate strPostData
Application.Wait Now() + TimeSerial(0, 0, 1)
SendKeys “~”

Next i

End Sub

 

My Learning
Latest Updates 78%
The Insiders Talk
The Insiders Talk

We are working in Ed-Tech oragnization where we run multiple business and works on new ideas. Here we try to provide you write guidence for Government category exams.

Scroll to Top