MrsMopey
Programmer
- Jul 31, 2007
- 19
Hello,
I have a name of a product in bold, a description, and a price. The name and description are in teh same column, but in different cells IE:
Name Price
ElevatorELE50-450Basic 4.495
Simpleandrobuststraightelevator
toputtheproduceintothedosinghopperontop
oftheweigher.Topandbottomsideoftheelevatorare
notcovered.Thebeltis500mmwide,4.500mmlongand
hasflightsof75mmheight.
I need to take the description and move it to the description column.
So I would like to do something like this I think;
any suggestions?
I have a name of a product in bold, a description, and a price. The name and description are in teh same column, but in different cells IE:
Name Price
ElevatorELE50-450Basic 4.495
Simpleandrobuststraightelevator
toputtheproduceintothedosinghopperontop
oftheweigher.Topandbottomsideoftheelevatorare
notcovered.Thebeltis500mmwide,4.500mmlongand
hasflightsof75mmheight.
I need to take the description and move it to the description column.
So I would like to do something like this I think;
Code:
For each cell in column a
if cell.font.bold then
leave it
else
copy cell.value to column b
end if
next