Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Thanks for your feedback on this one. I assumed there wasn't anything out of the box that I was missing, but good to know the work arounds. I'm not sure these will work for our use case, but will check with the team to see.
Hello, Working on a new project and I have access to all of the fields I want to display on a landing page... on a custom list which works just fine for emails, but wanted to have a landing page that provides the same/similar content, but can only use lead information. Is there a workaround for acce...
What a dummy... didn't see that. I updated that, but I'm still only getting the default value. Is there anything else that is sticking out?#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Los_Angeles") )#set( $defaultLocale = $date.getLocale() )#set( $calNow = $date.getCalendar() )#...
So I have a custom list (account_cList).I want it to check if ${account_cList.get(0).productType} has one of the qualifying (integer) values:1001, 1002, 1003, 1004, 1009, 1010, 1011, 1012, 1027, 1028, 1200, 1201, 1202, 1203, 1204, 1205, 1210, 1211, 1213, 1214, 1215Next, I want to look at ${account_c...
Would creating a proxy email field that is populated instead of the actual email field work?
@Jo_Pitts1, thanks again for pointing this out. I went back to the drawing board and @SanfordWhiteman's blog post and I am now getting the desired result with the following script:#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Los_Angeles") )#set( $defaultLocale = $date.getLocale(...
haha no problem at all. it is likely the issue with the script... I'm not entirely sure where I picked it up along the way (I've been looking at a lot of posts and things trying to piece this together). If you have any solutions, I'm all ears.I had seen that post and was trying to figure out how I w...
I spoke too soon.The current script is adding 10 years to the current date, I need it to take the date in $customList.openDate and add 10 years. Based on what I was seeing, it $calNow is taking today's date, so I tried changing it to $myDate (based on some digging) instead of $calNow, but that isn't...
Thank you! I looked at that post several times trying to find one that would match. I didn't know about the YEAR vs DATE switch. Here is my updated script that is generating the desired result (if anyone wants to see it): #set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Los_Angeles...
I have a date field that I am pulling from a custom list, and I'm getting the date expected, but I want to take that date and add ten years to it. So I have the beginning date, and I want to create a field that shows the end date which is ten years after the opening.I've not been able to figure out ...