Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. if analysis = "conf" then result
  2. else if analysis = "Original" then result
  3.  
  4. if {UNITS} = "CFU_G" then
  5. if {ANALYSIS} = "CONF" and
  6. {RESULT}="" or
  7. {RESULT} = "0" then 0
  8. else if {ANALYSIS} = "CONF"
  9. then if isNumeric({RESULT}) then
  10. tonumber({RESULT}) else
  11. tonumber(Replace ({RESULT}, "<", ""))
  12.  
  13. else
  14.  
  15. if {UNITS} = "CFU_G" then
  16. if {ANALYSIS} = "Original" and
  17. {RESULT}="" or
  18. {RESULT} = "0" then 0
  19. else if {ANALYSIS} = "Original"
  20. then if isNumeric({RESULT}) then
  21. tonumber({RESULT}) else
  22. tonumber(Replace ({RESULT}, "<", ""))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement