1. Hi,As you have the data in the order Name ... Nickname, VLOOKUP will not work for returning a Name for a given Nickname. VLOOKUP always looks for a match in the first column of the lookup range and returns a result from a column to the right. You could try a combination of Match and Offset=OFFSET(ShRead more

    Hi,

    As you have the data in the order Name … Nickname, VLOOKUP will not work for returning a Name for a given Nickname.

    VLOOKUP always looks for a match in the first column of the lookup range and returns a result from a column to the right.

    You could try a combination of Match and Offset
    =OFFSET(Sheet1!$C$1,MATCH(B7,Sheet1!$C$2:$C$61,0),-1)

    Match returns the number of rows down the list that it finds a match, and then this number is used as a row offset, for the Offset function, and -1 is the column Offset.

    If there is no match, then you get an #NA error, so use this:
    =IF(ISNA(MATCH(B7,Sheet1!$C$2:$C$61,0)),”No match”,OFFSET(Sheet1!$C$1,MATCH(B7,Sheet1!$C$2:$C$61,0),-1))

    Regards

    See less
    • 0
  2. Go to the start orb and choose help and support. Type “resizing partitions”. Choose “Can I repartition my hard disk”.This will explain how to merge the space into the C partition. In my opinion you shouldn’t do that though. Better to have two or three partitions. Easier to maintain your computer thaRead more

    Go to the start orb and choose help and support. Type “resizing partitions”. Choose “Can I repartition my hard disk”.

    This will explain how to merge the space into the C partition. In my opinion you shouldn’t do that though. Better to have two or three partitions. Easier to maintain your computer that way.

    See less
    • 0
  3. hello,i got the same problem, the reason was because i had another mingw instalations in my system. It seems that devc looks for a mingw installation each time it starts. The solution: i rename the c:mingw folder and everything start working with the internal devc mingw. Cheers!

    hello,

    i got the same problem, the reason was because i had another mingw instalations in my system. It seems that devc looks for a mingw installation each time it starts.

    The solution: i rename the c:mingw folder and everything start working with the internal devc mingw.

    Cheers!

    See less
    • 0