New talk of the spreadsheet lovers and vlookup bluffers...
Here's XLOOKUP
https://techcommunity.microsoft.com/t5/Excel-Blog/Announcing-XLOOKUP/ba-p/811376
Hi,
Pls check.
Option Explicit
#If VBA7 Then
Public Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As LongPtr) 'For 64 Bit Systems
#Else
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) 'For 32 Bit Systems
#End If
Sub GSTLogin()
Dim url As...
May i reason for the GST website login from VBA, There are plenty of software which offers filling directly from the software via API call and scrapping the said website is illegal as well. There's also captcha, so you can't login in the same way.
Hi,
You should be very clear to query to get the answers...
I found that there is a mismatch in your highlighted written details which was confusing.
Pls be careful for explanation to get the target answer.
The more clear query is - chances are very high to get answers!!!
Pls check the...
So, The code given here didn't work for u?
I have updated the code as well...
In ThisOutlookSession...
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strCheck As String
Cancel = True
On Error GoTo xEnd
strCheck = CheckAttachmentPassword(Item)
If...
Didn't encounter such issue...
Will you pls share a sample email, This might be issue of mht encoding..
(If privately then inbox : imdkbj at outlook dot com)
Hi,
Below line is checking that email will not send to any email duplicate email in said range on each loop.
If WorksheetFunction.CountIf(Range("C8:C" & cell.Row), cell) = 1 Then
What you want in case of multiple existence...
Send email to all if duplicate - then just remove that line and...