Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7922069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:49:37+00:00 2026-06-03T16:49:37+00:00

I’m making a complicated spreadsheet using some formulas with lots of nested if statements

  • 0

I’m making a complicated spreadsheet using some formulas with lots of nested if statements and I’m wondering if there is a good IDE-like solution for it. It just gets really complicated after a while and knowing where the parentheses close and remembering which if statement I’m in can be confusing after a while.

I’ve tried just pasting it in NetBeans as well as in Notepad+ and that helps with the parentheses and if I white-space it right then that helps me remember which if statement I’m in. However, I’d like a better solution

I know that whatever I’m trying to do can be done a million times more efficiently using VBA, but I don’t want to do that and that’s not the purpose of this question.

I doubt it’d be possible, but if anyone found me something that would do some IntelliSense-like functionality, that’d be awesome.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T16:49:39+00:00Added an answer on June 3, 2026 at 4:49 pm

    I used Notepad++. I found that it was the best solution I could find. For any interested, here’s my final formula… Kind of a mess. It was for a hourly pay spreadsheet thing I was doing for fun/experience/whatever.

    =if(
        row()>=($J$4+2)
        , ""
        , if(
            row() = 2
            , if(
                or(
                    MID(TEXT(datevalue($J$3), "ddEE"),3,9) = "Sat"
                    , MID(TEXT(datevalue($J$3), "ddEE"),3,9) = "Sun"
                )
                , if (
                    MID(TEXT(datevalue($J$3), "ddEE"),3,9) = "Sat"
                    , if (
                        $J$8="No"
                        , if (
                            $J$9="No"
                            , MID(TEXT(datevalue($J$3)+2, "ddEE"),3,9)&" - "&datevalue($J$3)+2
                            , MID(TEXT(datevalue($J$3)+1, "ddEE"),3,9)&" - "&datevalue($J$3)+1
                        )
                        , MID(TEXT(datevalue($J$3), "ddEE"),3,9)&" - "&datevalue($J$3)
                    )
                    , if (
                        $J$9="No"
                        , MID(TEXT(datevalue($J$3)+1, "ddEE"),3,9)&" - "&datevalue($J$3)+1
                        , MID(TEXT(datevalue($J$3), "ddEE"),3,9)&" - "&datevalue($J$3)
                    )
                )
                , MID(TEXT(datevalue($J$3), "ddEE"),3,9)&" - "&datevalue($J$3)
            )
            , if(
                or(
                    isnumber(
                        search(
                            "Sat",A1
                        )
                    )
                    ,isnumber(
                        search(
                            "Fri"
                            , A1
                        )
                    )
                )
                ,if(
                    isnumber(
                        search(
                            "Sat"
                            , A1
                        )
                    )
                    ,if(
                        $J$9="No"
                        , MID(TEXT(datevalue(right(A1,len(A1)-5))+2, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+2
                        , MID(TEXT(datevalue(right(A1,len(A1)-5))+1, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+1)
                    , if(
                        isnumber(
                            search(
                                "Fri"
                                , A1
                            )
                        ),
                        if (
                            $J$8="No"
                            , if (
                                $J$9="No"
                                , MID(TEXT(datevalue(right(A1,len(A1)-5))+3, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+3
                                , MID(TEXT(datevalue(right(A1,len(A1)-5))+2, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+2
                            )
                            , MID(TEXT(datevalue(right(A1,len(A1)-5))+1, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+1
                        ),
                    )
                )
                , MID(TEXT(datevalue(right(A1,len(A1)-5))+1, "ddEE"),3,9)&" - "&datevalue(right(A1,len(A1)-5))+1
            )
        )
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm making a simple page using Google Maps API 3. My first. One marker
I have some data like this: 1 2 3 4 5 9 2 6
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. The string
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.