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

I have a solution using very long case statements which works but is quite slow. I

Didn't tried it but is it possible to use calculations to get the table from say

Min(Substitute(DayRange);"-";"")) so that you can reduce from 60 the number of case statements.

However, I have the feeling the structure you adopted is not appropriate, and that you'd still have slow response time as you're involving cross-related calculations.

I would think it would be faster to split it up with nested cases, that way, you won't keep rechecking things you already know are true:


Case( Daypart01 = "M-F";

    Case( Start01 = "5a";

       Case( End01 = "6a"; Average(Ratings::mf5a);

                End01 = "7a"; Average(Ratings::mf5a; Ratings::mf6a);

                End01 = "8a"; Average(Ratings::mf5a; Ratings::mf6a; Ratings::mf7a));

             Start01 = "6a";

               Case( End01 = "6a"; Average(Ratings::mf6a);

                        End01 = "7a"; Average(Ratings::mf6a; Ratings::mf7a);

                        ...

  • Author

Thanks for the idea. Nested case statements have sped up the calculations and window refreshing considerably.

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.