|
P
|
psenick 5/26/2012 |
|
Is there a way to hide all but the last four numbers of a credit card field when displayed on the List or View pages? I want it to display something like ****1234.
|
|
|
|
Sergey Kornilov admin 5/26/2012 |
|
Use 'View as' type 'Custom' and the following code: value = "************" & right(value,4) |
|
|
|
jtksmith author 5/27/2012 |
|
Thank you Hawkeye. strValue = "************" & right(strValue,4) |
|