Re: Find & replace text looping through a list
Another quick question, if i need to change the vba code to have the new value in column d (master data)instead of replacing the value in column b, what do i need to modify in the code?
Sincerely
Please note that on 14th December 2023 users will experience an expected outage whilst we make upgrades to our network. We anticipate this process may take a couple of hours and so we apologise in advance for any inconvenience.
Re: Find & replace text looping through a list
Another quick question, if i need to change the vba code to have the new value in column d (master data)instead of replacing the value in column b, what do i need to modify in the code?
Sincerely
Re: Find & replace text looping through a list
Works perfectly, thanks
Re: Find and replace from a list
Please delete post
Thanks
Good afternoon, looking through the forum and I'm not able to find it.
I looking for a VBA code to find a replace specific text through a list on sheet2.
I have my database of old position names in sheet1 colunm C and I have a new list of Positions on sheet2
Is there a way to loop through sheet2 to find the name of old Positions (Sheet2 A1, A2, A3, etc..) to be replaced and replace them in Sheet1 (colunmA) if match the old position?
The new positions names are located on sheet2 (B1, B2, B3, etc...)
Any suggestions?forum.ozgrid.com/index.php?attachment/49899/
Good afternoon I'm looking for VBA codes
1) find specific words on sheet1 and replace then from a list located on sheet2
on Sheet2 colu
good morning,
I'm trying to set-up the print area for my actual & Forecast.
I have two years of data from A1 to U735, dates are in column B
Is it possible with a macro to set up the print area for each Month?
Thanks
Good morning, Is it possible to change the starting year in the advanced calendar?
I used the Calendar Control 10.0
Right know when you want to change the year the calendar, it start at 1900. Can we change it to 2008?
Sincerely
Good afternoon,
I have 365 days of data that I need to sum by specific weekday. I need to Sum every fisrt Sundays of each month for the year, then each mondays, Tuesdays, etc. I looked all over the forum and was not able to find a thread. Is ithat possible to do?
Sincerely
Good afternoon,
I need some help
I have in sheet1 a ComboBox next to cell A3 linked to a dynamic range in sheet2.
Can we do a VLOOKUP on the Combobox ie =VLOOKUP("combobox",Range,2)??
Thanks
good afternoon.
In my range A1 to J1. I have 10 different rates
$259 $269 $289 $269 $269 $259 $289 $239 $249 $329
in B2 I have a blended rate of $279, what would be the formula to round the blended rate to the next highest rate in my range? (that would be $289)
Thanks
Good morning,
I'm not getting that early in the morning, any help would be appriciated
In A1 I've the start time
In B1 I've the end time
in C2 I have a time value ie 6:30 AM
I need a formula IF C1 is between the start time and end time to return the value 1 and if not to return 0
Thanks
Re: Setup A Print Area For A Pivot Table
I will attach a file tomorrow
Thanks
Good afternoon, I found this VBA code on one of your post for printing a copy of a pivot table for each item field.
I tried to modify it without success to set up a dynamic print area to fit on 1 page landscape, since each item field have a different size (some 6 rows, some have 100 rows or more). Any suggestions??
Thanks
Private Sub CommandButton1_Click()
'prints a copy of pivot table for each item in page field
'assumes one page field exists
On Error Resume Next
Dim pt As PivotTable
Dim pf As PivotField
Dim pi As PivotItem
Set pt = ActiveSheet.PivotTables.Item(1)
For Each pf In pt.PageFields
For Each pi In pf.PivotItems
pt.PivotFields(pf.Name).CurrentPage = pi.Name
Selection.PrintOut
Next
Next pf
End Sub
Display More
Re: Remove Chosen ComboBox Item Plus x Rows
Sorry, I tried, it will only dlete the cell + 2 cells down.
Thanks
Good evening,
I have a dynanic range named Room on B1
My combobox1 rowsource is linked to the Dynamic range Room
I would like to be able to delete the the specified selected room from the combobox and the next 3 column C,D,E (delete Shift cells up)
thanks
Re: Copy A Range And Paste It X Times
Just what I needed
Thanks
Good afternoon,
Is it possible to have the user inputing a value in cell $G$8
and have the range B11 to G11 to be copied x time depending the value of Cell $G$8 down
ie: Value is 5, it will be copied on 5 rows under B11 to G11??
Any help would be appreciated
Thanks
Re: Delete Specific Rows If Cells Are Empty
Yes, but it will also delete empty rows from B1 to B11.
I just want to delete only the empty rows after rows 12 and under
Thanks
Good day to all, I"m looking for a VBA code to delete rows based on 1 condition. I have some data from B12 & down, same for column C,D and E. I'm looking to delete all rows under B12 if they do not have any data. Even if Column C, D or E have data
Thanks
Good morning.
Every month I need to save a template report file 30 times in a specific folder.
Is it possible with VBA to create a macro to save the file 30 time with increment from 1 cell
Ie if Cell A1 is 07-01-06 to save it to 07-02-06, 07-03-06 until 07-31-06?
Sincerely