I have this macro code, which basically takes an area of Excel and sends it as an image via WhatsApp
Hoja4.Select
ActiveSheet.Range("B2:j56").Select
Selection.Copy
Hoja4.Select
I need this operation to be done with other areas of the table, so I can send more than one file
Change the affected Range? What exactly is the problem? Also all the code snipped provided does is Select a range and copy it, nothing else
Code is basically one line:
Hoja4.Range("B2:J56").Copy
This doesn’t help us understand the actual specific problem you’re having.