i have a cell contents in cell b1 such as "A0039". What I require is for cell c1 to include the path and add ".xls" to it. So cell c1 should be "L:\Email Accounts\A0039.xls". Can this macro run from cells C1 to C65536.
If you want to use a macro that captures the path of the current file, this should work:
Code:
Sub MyFileName()
Application.ScreenUpdating = False
Dim cell As Range
For Each cell In Range("B1:B65536")
If Len(cell) > 0 Then cell.Offset(0, 1) = ThisWorkbook.Path & "\" & cell & ".xls"
Next cell
Application.ScreenUpdating = True
End Sub
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.