M
Mark Parent
Is there an easier way to extract and right justify a number from a string?
I'm pulling the "BRANCH" value from a longer string and formating it using:
BRANCH =
Format(Val(Left([Branch_Account_Num],Len([Branch_Account_Num])-[Posn])),"#")
and want to right justify the result within another string. Do I need to use:
space(10-len([BRANCH]) & [BRANCH] ?
I keep thinking there must be a custom formating that I could use instead of
"#" that would do this, but I can't find it...
I'm pulling the "BRANCH" value from a longer string and formating it using:
BRANCH =
Format(Val(Left([Branch_Account_Num],Len([Branch_Account_Num])-[Posn])),"#")
and want to right justify the result within another string. Do I need to use:
space(10-len([BRANCH]) & [BRANCH] ?
I keep thinking there must be a custom formating that I could use instead of
"#" that would do this, but I can't find it...