We used the following vbscript to modify all price entries in our software import list.
if InStr(value, ".") = 0 Then
value = value & "00"
end if
retvalue=Replace(Replace(Replace(value,"$",""),",",""),".","”)
We used the following vbscript to modify all price entries in our software import list.
if InStr(value, ".") = 0 Then
value = value & "00"
end if
retvalue=Replace(Replace(Replace(value,"$",""),",",""),".","”)