- Blues De Luxe (Jeff Beck - Truth)
- Gettin In Tune (really, all over Who’s Next)
- Edward the Mad Shirt Grinder
- Loving Cup - the Glimmer Twins
- Drowned - The Who
- Edward’s Thrump Up
- Highland Fling
- Volunteers of America
- Baby’s House - Steve Miller
Sunday, October 09, 2016
Nicky Hopkins’ Greatest Hits
Tuesday, September 13, 2016
Simple SharePoint List Item Validation Example
Sometimes SharePoint validation can be touchy. This is a simple example of ...
If you answer "Yes" then you must also complete this other field.
VPN is a choice field. VPN Justification is a single line of text.
The formula is:
and the User Message is:
Simple and effective.
If you answer "Yes" then you must also complete this other field.
VPN is a choice field. VPN Justification is a single line of text.
The formula is:
=IF(VPN="Yes",LEN([VPN Justifiction])>2,TRUE)
and the User Message is:
VPN justification must be completed
Simple and effective.
Labels:
Sharepoint
Wednesday, June 08, 2016
Setting a Due Date
This formula worked real well as
=Today+2+IF(OR(WEEKDAY(Today)=4,WEEKDAY(Today)=5,WEEKDAY(Today)=6),2,0)+IF(WEEKDAY(Today)=7,1,0)
- a calculated default value
- on a date only field
- to set the due date to today plus two
- and accounting for weekends:
=Today+2+IF(OR(WEEKDAY(Today)=4,WEEKDAY(Today)=5,WEEKDAY(Today)=6),2,0)+IF(WEEKDAY(Today)=7,1,0)
Labels:
Sharepoint
Subscribe to:
Posts (Atom)