vba to determine user and computer name, then add to existing formula

andymalan

Board Regular
Joined
Feb 22, 2017
Messages
128
Office Version
  1. 365
  2. 2007
Platform
  1. Windows
Hi most learned people.
I have a formula in a worksheet that references the user and the computer name (in bold below)

='C:\Users\andym\Documents\ExcaliburDataConfig\ConfigPLANITData\[DrawingData.xlsx]Page 1'!B1

This formula needs to run on a variety of computers, whose user name and computer name is unknown to me.
is there some method to
A) determine user and computer name
B) replace the existing formula with the new references.

I could really use some help on this, pretty please?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Maybe something like
Code:
Sub chk()
Range("A1") = Environ("userprofile")
End Sub
You can then concatenate that with the rest of the file path/name
 
Upvote 0
Thank you very much, will try this and let you know if it was successful.☺
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,460
Members
448,965
Latest member
grijken

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