Active Work Order Board. Need VBA

GraphWS

New Member
Joined
Aug 22, 2019
Messages
5
AAD4xwM0pxcQ1nPmG3QJVJJWa
Everything works as is BUT
Right now I open each file hyperlinked in Column A select cells C18 to O18 of that file and drag right from Column C to Column O of ActiveWorkOrders file.
Code:
 =[AWOF10428.xlsX]Sheet1!$C$18:$O$18

The files hyperlinked in Column A are files people can update using online version of Excel by putting a X in a category as they are completed or not required.
I use the below Sub to set the conditional formatting on 30 rows. The number of rows is going to grow fast when we get out of “testing phase” lol

Code:
Sub AssignFormat()
 
With ThisWorkbook.Worksheets(1).Range("C3:O3")
     .FormatConditions.Delete
     .FormatConditions.Add Type:=xlExpression, Formula1:="=COUNTIF($C3:C$3,C3)=1"
     .FormatConditions(1).Interior.ColorIndex = 3
     .FormatConditions(1).Font.ColorIndex = 3
End With

I used VBA to set conditional formatting because for some reason the rules would change seemly on their own.
I use a Power Query on Sheet2 to update data in Column A & B.
What I’d like to have is VBA that would fill in link info in each row. Files are and always will be in same dropbox folder. Names will always start with “AWOF” followed by number(same number in column A).
While I’m wishing on a star I’d also like have hyperlink and number in Column A copied to which ever cell in row is red (first 0) moving towards Close & Bill.

Thanks
conditional%20formatting.jpg
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.

Forum statistics

Threads
1,215,737
Messages
6,126,558
Members
449,318
Latest member
Son Raphon

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