Workflow Design Form Convert Case Textbox
Does anyone know the syntax for converting a string input in a Workflow Design Form Textbox to upper case?
-
I believe you can use this below I think workflow just uses VB syntax
(StrConv([var],VbStrConv.UpperCase))
0 -
Thanks,
It seems like the logic place would be in the QueryTask where clause but I cannot get it to work trying various permutations.
0 -
You could try using the A>B Assign method in the Common Server group. It allows you to assign variables using VB. But I still can't get it to work with the following expression:
StrConv(DistrictName.ToString(), VbStrConv.LowerCase)
DistrictName is an object
I tried it with a string variable and that doesn't work either.
0 -
To convert a string's case just use:
myString.ToUpper() or myString.ToLower()
You can even convert an object to a string and change its case in one line -- no need to use an assignment step:
myObject.ToString().ToUpper()
0
Du måste logga in om du vill lämna en kommentar.
Kommentarer
4 kommentarer