Good morning!
I'm new to VBA, so I'm a little stuck. I'm trying to copy the text after "brand=" in column AU until "," as well as the text after "model=", then paste it into column E after "Default Category/Lexan Polycarbonate Motorsport Windows & Kits" with a "/" between the two strings.
I have managed to create code to find the relevant cell and select text after "brand=", but I am unsure how to proceed from here. Here's my code so far:
If anyone could point me in the right direction it would be massively appreciated.
I'm new to VBA, so I'm a little stuck. I'm trying to copy the text after "brand=" in column AU until "," as well as the text after "model=", then paste it into column E after "Default Category/Lexan Polycarbonate Motorsport Windows & Kits" with a "/" between the two strings.
I have managed to create code to find the relevant cell and select text after "brand=", but I am unsure how to proceed from here. Here's my code so far:
VBA Code:
Sub findmakemodel()
If ActiveCell.Value = "Default Category/Lexan Polycarbonate Motorsport Windows & Kits" Then
ActiveCell.Offset(0, 42).Select
End If
If InStr(1, (ActiveCell.Value), "brand=") > 0 Then
If anyone could point me in the right direction it would be massively appreciated.