Forum Discussion
Anonymous
3 years agoNot applicable
Conditional replacing of dates
Hello, I am trying to replace dates in column "BASELINE Start Date" with a date of 1 Jan 2000 based on if the value in column "RAG Number" = 4. See querry below. It is not working somehow... Any...
- 3 years ago
Perhaps your [RAG Number] column is number type, not text type?
Try changing this:
each if [RAG Number] = "4" >> each if [RAG Number] = 4 // No quotes for number typesPete
Anonymous
3 years agoNot applicable
Thanks for the feedback. I have tried, but unfortunatly no luck.
BA_Pete
3 years agoSuper User
Perhaps your [RAG Number] column is number type, not text type?
Try changing this:
each if [RAG Number] = "4" >> each if [RAG Number] = 4 // No quotes for number types
Pete
- Anonymous3 years agoNot applicable
Hi BA_Pete,
Great! This indeed solved the problem. Many thanks!