Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. =IF(YesNoColumnName=TRUE;"<img src='http://SharePointUrl/_layouts/images/cbChecked_locked.GIF' border='0'/>";"<img src='http://SharePointUrl/_layouts/images/cbUnChecked.GIF' border='0'/>")
  2.  
  3. =IF(YesNoColumnName=TRUE,"This is the text when the column is Yes","This is the text when the column is No")
  4.  
  5. =IF(YesNoColumnName=TRUE
  6. ,
  7. "<img src='http://SharePointUrl/_layouts/images/cbChecked_locked.GIF' border='0'/>"
  8. ,
  9. "<img src='http://SharePointUrl/_layouts/images/cbUnChecked.GIF' border='0'/>"
  10. )
  11.  
  12. ="<img src='/_layouts/images/cb"
  13. & IF(YesNoColumnName,"Checked_locked","UnChecked")
  14. & ".GIF'/>"
  15.  
  16. ="<img src=/_layouts/images/cb"
  17. & IF(YesNoColumnName,"Checked_locked","UnChecked")
  18. & ".GIF>"
  19.  
  20. ="<img src=/_layouts/images/cb"
  21. & IF(YesNoColumnName,"","un")
  22. & "checked.gif>"
  23.  
  24. ="<div style='font-size:25px;margin-top:-10px;color:darkgrey;'>"
  25. &"&#974"
  26. & 4 + YesNoColumnName
  27. &";</div>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement