+ Reply to Thread
Results 1 to 11 of 11

Recognizing Different Text Typed in Cells.

  1. #1
    Registered User
    Join Date
    10-16-2014
    Location
    Utah
    MS-Off Ver
    MS Excel 2013
    Posts
    5

    Question Recognizing Different Text Typed in Cells.

    I am working on an online Dungeons and Dragons Character sheet for the new version 5 that just came out.

    In the game, there is an attack bonus that is based on the skill you're using while attacking and if you've been trained in the attack you're trying to make.

    Here is my formula
    =Sum((IF(H57="Yes"),S16,0),(IF(k57="Strength"),G14,IF((k57="Dexterity"),G17,IF((k57="Constitution"),G20,IF((k57="Intelligence"),G23,IF((k57="Wisdom"),G26,IF((k57="Charisma"),G29,)))))))

    Excel is not recognizing that "Yes" or "Stregnth" or any of the others are just words typed into those boxes.

    Is there a way to fix this?

    (S16,G14,g17 and the likes are where all the values are stored on my sheet. These numbers are ok and work perfectly well with other equations on my document.)

    Thank you!
    Flame_Driven
    Last edited by Flame_Driven; 10-16-2014 at 02:36 PM.

  2. #2
    Forum Expert
    Join Date
    09-11-2014
    Location
    Washington, DC
    MS-Off Ver
    2016
    Posts
    1,907

    Re: Recognizing Different Text Typed in Cells.

    Could you use a sumif instead, with possibly an index/match combination? That would simplify the process, and help you work out any errors.

  3. #3
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Recognizing Different Text Typed in Cells.

    It should recognize them. Can you upload the character sheet (Go Advanced> Manage Attachments)
    In your formula, you want to close each IF statement after the respective cell, not before it.
    =Sum((IF(H57="Yes"),S16,0),(IF(k57="Strength",G14),IF((k57="Dexterity",G17),IF((k57="Constitution",G20),IF((k57="Intelligence",G23),IF(k57="Wisdom",G26),IF((k57="Charisma",G29))
    Does that formula work?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  4. #4
    Registered User
    Join Date
    10-16-2014
    Location
    Utah
    MS-Off Ver
    MS Excel 2013
    Posts
    5

    Question Re: Recognizing Different Text Typed in Cells.

    I just tried your formula ChemistB and it didn't work. I also tried a modified version of it:
    =Sum((IF(H57="Yes"),S16,0),(IF(K57="Strength",G14,IF(K57="Dexterity",G17,IF(K57="Constitution",G20,IF(K57="Intelligence",G23,IF(K57="Wisdom",G26,IF(K57="Charisma",G29))))))))

    and that didn't work.

    I have done the formula that way because if it does not match the first criteria I can have it move on to the next criteria under the "False part of the statement.

    I am attaching the character sheet now. The cell I'm trying to work this formula in is Q57. It won't let me save it with the un-working formula in it. So, when you open it up, it will be blank.
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    10-16-2014
    Location
    Utah
    MS-Off Ver
    MS Excel 2013
    Posts
    5

    Re: Recognizing Different Text Typed in Cells.

    I just thought I knew excel so well... I mean look at the formula under R8!? How can I understand all that and something as simple as recognizing text has me screwed up. Excel 1 Flame_Driven 0

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Recognizing Different Text Typed in Cells.

    Here is the corrected formula in Q57 (assuming you want a 5)

    =SUM(IF(H57="Yes",S16,0),(IF(K57="Strength",G14,IF(K57="Dexterity",G17,IF(K57="Constitution",G20,IF(K57="Intelligence",G23,IF(K57="Wisdom",G26,IF(K57="Charisma",G29))))))))


    The formula in R8 is just a very extended Nested IF statement with some AND's thrown in.
    AND is used when you want multiple things to be true , i.e IF(AND ("strength"<16, "strength">12), "use battleaxe", "use dagger")
    There has to be alternatives to using such a complex nested IF.
    Attached Files Attached Files

  7. #7
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Recognizing Different Text Typed in Cells.

    This formula should work the same as the one in R8 except it's just a little bit shorter

    =MATCH(Q10, 'Don't Touch!'!A2:A21)

  8. #8
    Registered User
    Join Date
    10-16-2014
    Location
    Utah
    MS-Off Ver
    MS Excel 2013
    Posts
    5

    Re: Recognizing Different Text Typed in Cells.

    Thank you ChemistB. I can see I was using to many separations now.
    Thank you for your help.
    I'm sure there are much easier ways to work out the formula in R8. With the D+D V5 system being so new I feel like they'll make changes to the amount of experience points necessary for leveling up. If I leave it to where it checks the other sheet for the amounts then I can change those amounts if changes happen to V5.

  9. #9
    Forum Expert
    Join Date
    09-11-2014
    Location
    Washington, DC
    MS-Off Ver
    2016
    Posts
    1,907

    Re: Recognizing Different Text Typed in Cells.

    Try this formula in cell Q57 and drag down:
    Please Login or Register  to view this content.
    Forgot to mention - add the point values next to the abilities in the Don't Touch tab for this to work.

  10. #10
    Registered User
    Join Date
    10-16-2014
    Location
    Utah
    MS-Off Ver
    MS Excel 2013
    Posts
    5

    Re: Recognizing Different Text Typed in Cells.

    HAHAHAHAHA A little bit shorter indeed!

  11. #11
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Recognizing Different Text Typed in Cells.

    Another option in Q57

    =IF(H57="Yes",S16,0)+INDEX(G13:G30, MATCH(K57,C13:C30,0)+1)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Pulling specific text within a text in which the information is typed differently
    By djmatok in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-02-2014, 06:11 PM
  2. [SOLVED] Replacing text just typed
    By distortthecode in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 03-07-2014, 09:13 AM
  3. Specify range of cells including spaces, manually typed text and line breaks in VBA
    By LindaABH in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-17-2012, 12:59 AM
  4. Replies: 6
    Last Post: 06-08-2012, 06:54 PM
  5. How to display text exactly as typed
    By gugon in forum Excel General
    Replies: 5
    Last Post: 07-09-2009, 10:48 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1