Created
November 20, 2025 20:43
-
-
Save trycf/530a54ffd72cf1fe5e9977a9fe9b40cc to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfset rsData.PropertyType = "Multifamily"> | |
| <cfif len(rsData.PropertyType)> | |
| <cfif rsData.PropertyType neq "multifamily"> | |
| <cfset rsData.PropertyType = uCase(left(rsData.PropertyType, 1)) & lCase(right(rsData.PropertyType, len(rsData.PropertyType) - 1))> | |
| <cfelse> | |
| <cfset rsData.PropertyType = "MultiFamily"> | |
| </cfif> | |
| </cfif> | |
| <cfdump var="#rsData.PropertyType#"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment