Some Excel help please

Caporegime
Joined
1 Nov 2003
Posts
35,691
Location
Lisbon, Portugal
Hi guys,

For a global change I am looking to make I need some hand with excel to build the powershell commands

So I have the command

Code:
Set-MailboxCalendarConfiguration -Identity "X" -WorkingHoursStartTime 07:00:00

The X I would like to replace with a username

So I have the command copied down for all the users in Column A and the user names in Column B

Whats the best way to get this to pull the names from Column B and get it to replace X in Column A? :)

TIA
Jake
 
Hi,

If I've understood what you're after then in Column C: -

Code:
=SUBSTITUTE(A1,"X",B1)

Again just copy this down as required.
 
Back
Top Bottom