This won't exactly work for what I do. I do not enter each replacement manually I have this setup in a formula.
"Cells.Replace _
What:=""AQUATICS - FILTERS: SUMPS"", Replacement:=""177,173"", _
LookAt:=xlWhole, MatchCase:=True"
"Cells.Replace _
What:=""AQUATICS - BULBS: FLOURESCENT"", Replacement:="""", _
LookAt:=xlWhole, MatchCase:=True"
"Cells.Replace _
What:=""AQUATICS - FISH BOWLS"", Replacement:=""183"", _
LookAt:=xlWhole, MatchCase:=True"
for the numbers for example is use this code:
=Sheet1!I14 & IF(ISNUMBER(Sheet1!L14),"," & Sheet1!L14,"")
This pulls 177,173 from another sheet and if there is not another it will not include the comma and other number...So now what I need is if there is another number in sheet one example L14 it needs to go on the row below.
---------- Post added at 09:29 PM ---------- Previous post was at 09:13 PM ----------
And the code above does not put it in its own row
---------- Post added at 10:33 PM ---------- Previous post was at 09:29 PM ----------
basically I am looking for a if command that would move the content if there is anything in sheet1 like the if command above. I just need there to be no comma and go to the row below.
Bookmarks