Need help for excel VBA code

xainthowell

New Member
Joined
Mar 3, 2023
Messages
24
Office Version
  1. 2013
Platform
  1. Windows
Can someone help me with this code. Thanks
VBA Code:
Dim LastRow As Long
    Dim PicPath As String
    Dim sb As Worksheet
    Set sb = ThisWorkbook.Sheets("Data")
    
    LastRow = Application.WorksheetFunction.CountA(sb.Range("AK:AK")) + 1
    
    namepic = Sheet2.Range("B" & LastRow).Value
         
    SavePicture imgPhoto.Picture, ThisWorkbook.Path & "\" & namepic & ".jpg"
    PicPath = ThisWorkbook.Path & "\" & namepic & ".jpg"
      
    Sheet2.Cells(LastRow, "AK").Value = PicPath

form_SSEN.xlsb
B
1FIRSTNAME
2SHERWIN
3CLAIRE
Data

form_SSEN.xlsb
AK
1PHOTO
2E:\SSEN Excel VBA Project\.jpg
3E:\SSEN Excel VBA Project\SHERWIN.jpg
4E:\SSEN Excel VBA Project\.jpg
Data
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hi

Can you explain what you want to do please

Regards
 
Upvote 0
Hi

Can you explain what you want to do please

Regards
I just want the picture to get the filename from the column B when Update or Save button is click and If I want to save the data and the picture it should be on the next row when I click save button
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,395
Members
449,446
Latest member
CodeCybear

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top