본문 바로가기

ASP,MSSQL Tip

원 단위 절사

Function get_cut_int_price(price)
 If price <> "0 " and price <> "" Then
  print_price = cStr(price) '문자로 변환

  print_price = Mid(print_price, 1, Len(print_price) - 1) & "0" '원단위 절사

  print_price = cDbl(print_price) '숫자로 변환
 End If

 get_cut_int_price = print_price

End Function

'ASP,MSSQL Tip' 카테고리의 다른 글

[MSSQL] select 시 자동 증가값 만들기  (0) 2014.10.17
asp IIF Function  (0) 2014.10.07
asp html 태그 제거  (0) 2014.03.18
nanumi image component  (0) 2014.03.11
strip tag funtion  (0) 2014.03.10