Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

say i have a field with a number such as this

[color:red]12748a030827

i already have this being figured out. as far as what it means.

like this:

[color:blue]Let([

Issue = Middle(MyText;4;2);

Alpha = Middle(MyText;6;1);

Category = Case(Alpha = "a"; "Automotive"; Alpha = "b"; "Boat"; Alpha = "h"; "Home"; Alpha = "q"; "Internet"; Alpha = "t"; "Truck"; Alpha = "r"; "Bargain"; "");

TextToDisplay = Category & " " & "Ad Issue" & " " & Issue

];

TextToDisplay

)

this is not my problem this is my problem every now and again the number will change to something like this [color:red]#240084

well as you can tell this will not work with the script above all i want is this if the number doesn't start with a [color:red]1 i want it to display with what ever is its default value. [color:red]#240084

Edited by Guest

Hi

if I understood you correctly, this is pretty simple:

[color:blue]Let([

[color:red]firstChar = Left(MyText;1);

[color:blue]Issue = Middle(MyText;4;2);

Alpha = Middle(MyText;6;1);

Category = Case(Alpha = "a"; "Automotive"; Alpha = "b"; "Boat"; Alpha = "h"; "Home"; Alpha = "q"; "Internet"; Alpha = "t"; "Truck"; Alpha = "r"; "Bargain"; "");

TextToDisplay = Category & " " & "Ad Issue" & " " & Issue

];

[color:red]Case(

firstChar = 1;TextToDisplay;MyText

)

[color:blue])

  • Author

perfect god i really need to learn this more that was a simple answer

  • Author

what about this is the first char has a # how would i change it to say something like ;MyText & " Paid Thank You" &

Let([

firstChar = Left(MyText;1);

Issue = Middle(MyText;4;2);

Alpha = Middle(MyText;6;1);

Category = Case(Alpha = "a"; "Automotive"; Alpha = "b"; "Boat"; Alpha = "h"; "Home"; Alpha = "q"; "Internet"; Alpha = "t"; "Truck"; Alpha = "r"; "Bargain"; "");

TextToDisplay = Category & " " & "Ad Issue" & " " & Issue

];

Case(

firstChar = 1;TextToDisplay;

[color:red]firstChar = "#";MyText & " Paid Thank You";

MyText

)

)

  • Author

awsome

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.