on ‎2018 Oct 18 6:15 PM
Version: 14.2.3.2132 of Business Objects
When I pull a SSN into a report, it comes through in a straight number 123456789
I need to convert this to somehow include dashes: 123-45-6789
While there is a left =Left([Borrower 1 SSN];3) +"-"
and right =Right([Borrower 1 SSN];4)
function I can use for the first three with a dash and last four, there is no "mid" function to extract the two middle numbers, so they can be separated out and a dash added. Any ideas in how I can do this?
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One more method I ended up finding that works:
=Substr([Borrower 1 SSN];1;3)+"-"+Substr([Borrower 1 SSN];4;2)+"-"+Substr([Borrower 1 SSN];6;4)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Ayman, that did it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, yes, using Web Intelligence. SAP BusinessObjects BI Platform 4.2 Support Pack 3
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.