01 Test Instructions
01 Test Instructions
Sub RemoveDollarSignAndMultiply()
Dim LastRow As Long
Dim i As Long
LastRow = ActiveSheet.Cells(Rows.Count, "C").End(xlUp).Row
For i = 1 To LastRow
Dim cellValue As String
cellValue = Cells(i, "C").Value
' Check if the cell value contains a "$"
If InStr(cellValue, "$") > 0 Then
' Remove the "$" and convert to a numeric value
cellValue = Replace(cellValue, "$", "")
cellValue = Val(cellValue)
' Multiply by 500
cellValue = cellValue * 500
' Put the modified value back in the cell
Cells(i, "C").Value = cellValue
End If
Next i
End Sub
--
e. Once you've pasted your code, you can run it by either pressing green play
button on top bar or pressing F5 on your keyboard and click run.
f. Save your workbook to keep the changes.
17. Generate from chatgpt a common short description and description for each
category.
18. Blend Title with AI genertaed description and short description so that it
becomes unique for each product. Use formula in excel. Check "Custom Excel formula
example" file attched to and modify it as per your file.
19. Check "Sample scraped list" file as to how the final result should look like.
20. Add tags in H and I columns
a. H column - "Gedescs" to indicate products have generic descriptions
b. I column - "Sct" to indicate products have scraped title
21. Delete rows completely which has blank cells e.g Image cell, title cell etc.
Make sure to select the whole row while deleting, not just the cell.
22. Check Title and remove any unwated characters like symbols etc.
23. Keep same headers for all files so that files can be merged later.
24. Try to scrape products simultaneously on multiple chrome tabs. Keep each
category separate.
25. When 10000 rows are done, send it via email. We will check and get back to you.