Search results

  1. shamimarita

    [Solved] Deductions and Refund Formula

    Hello Maps, You can use the following formula. =IF(OR(A33="",A33=0), "", IF(A33=-100, 0, IFERROR( VLOOKUP(A33,$A$3:$C$11,3,TRUE) + (A33 - VLOOKUP(A33,$A$3:$C$11,3,TRUE)) * VLOOKUP(A33,$A$3:$D$20,4,TRUE), "" ) ) ) Explanation...
  2. shamimarita

    [Solved] Error in totalling the cells include text along with numbers in Excel

    You are most welcome. Keep Exploring Excel with ExcelDemy. Keep helping each other to make this community stronger.
  3. shamimarita

    [Solved] Error in totalling the cells include text along with numbers in Excel

    Hello Shminhas, Use the following formula: =SUM(IF(ISNUMBER(SEARCH("Kg",A1:A5)), --SUBSTITUTE(A1:A5," Kg",""), 0))
  4. shamimarita

    [Solved] Error in totalling the cells include text along with numbers in Excel

    Hello Shminhas, If your range contains some cells with "Kg" and others with "NA" or other non-numeric text, you need to modify the formula to ignore non-numeric values while summing only the cells that contain "Kg". Use the following SUMPRODUCT formula to only sum values that contain "Kg"...
  5. shamimarita

    [Solved] Error in totalling the cells include text along with numbers in Excel

    Hello Shminhas, The formula you have used from our article is correct: =SUM(SUBSTITUTE(D5:D9," Kg","")+0) However, you're getting a #VALUE! error because this formula needs to be entered as an array formula or modified to work correctly with array inputs. The standard SUBSTITUTE() function...
  6. shamimarita

    [Solved] Epoch to date/time

    Haha! Glad you got it working! Sometimes, it's just that one little tweak that makes all the difference. And hey, explaining Excel to a Luddite is a heroic effort in itself—props to you for trying! Happy Excelling with ExcelDemy!
  7. shamimarita

    [Solved] Epoch to date/time

    Hello, It looks like the issue is likely related to one of these common problems: Cell Width Too Small: If the column isn't wide enough, Excel will display #####. Try expanding the column width. Incorrect Formula or Reference: Ensure you're using the correct formula, like: =A1 / 86400 +...
  8. shamimarita

    [Solved] Excel LOOKUP Formula Help

    You're very welcome! 😊 I'm glad the confirmation helped you pinpoint the issue. The number vs. text mismatch can be a sneaky problem, but now you’ve got it sorted! If you run into anything else, feel free to ask—happy to help. Let’s keep helping each other and make the ExcelDemy forum a...
  9. shamimarita

    [Solved] Excel LOOKUP Formula Help

    Hello Tmbutter, You can use this Excel formula in F5 to return TRUE or FALSE based on whether the lookup value exists: =IF(COUNTIF(INDEX(A3:C6,0,MATCH(F3,A2:C2,0)),F4)>0,TRUE,FALSE) Explanation: MATCH(F3, A2:C2, 0): Finds the column number of the selected header in F3. INDEX(A3:C6, 0...
  10. shamimarita

    [Solved] Creating a roster

    You're very welcome! 😊 I understand, Excel can be overwhelming at first, but don’t worry! The templates I shared earlier are designed to make things much easier. You can start by opening the template and entering your employees' names. The shifts will be structured based on the format you need.
  11. shamimarita

    [Solved] Creating a roster

    Hi OffSim, Welcome to Excel! Yes, it's possible to create a roster that assigns morning (ED), late (LD), and rest days (RD/IN) for your 16 employees while ensuring they only work 2-3 shifts per month. You can use Excel formulas and data validation to automate the scheduling process. Here’s a...
  12. shamimarita

    [Solved] Excel Formula help

    Hi Efrenewat, You're right! Using an IF statement with COUNTIFS works well for this situation.
  13. shamimarita

    [Solved] Need assistance with Auto-generating billing cycle dates

    You are most welcome. Glad to hear that our solution worked. Keep exploring Excel with ExcelDemy. Let's help each other make the community stronger.
  14. shamimarita

    [Solved] How can I eliminate duplicates in a list and list in descending order?

    Hello Mike, You can use the following formula: =IFERROR(LARGE(IF(('Detailed List'!$C$4:$C$3004=BH$3)*(COUNTIF(BH$3:BH3, 'Detailed List'!$B$4:$B$3004)=0), 'Detailed List'!$B$4:$B$3004), 1), "--")
  15. shamimarita

    [Solved] Excel formula Sort& Sum

    Hello Muh, To fetch the sales and profit values for these Employee Name, and Item Division from the sales sheet, you can use the SUMIFS formula in Excel. Sales Amount: =SUMIFS('Sales Data'!$G$3:$G$163, 'Sales Data'!$J$3:$J$163, E4, 'Sales Data'!$L$3:$L$163, F4) Profit Amount: =SUMIFS('Sales...
  16. shamimarita

    [Solved] Excel Formula help

    Okay. Hopefully, it will solve your issue.
  17. shamimarita

    [Answered] Error with VBA code from youtube example

    It seems the shapes are not reflecting the visibility changes as expected, and the sheet tabs may not be working as intended either. Here's a full breakdown and updated guidance. Sub JAN() On Error GoTo ErrorHandler With Sheet1 ' Unprotect sheet if protected If...
  18. shamimarita

    [Solved] How can I eliminate duplicates in a list and list in descending order?

    Hello Mike, Thank you for clarifying! Based on your description, here's how to achieve the desired outcome. Array Formula for Unique Years in Descending Order: Since Excel 2016 doesn't have dynamic array functions like UNIQUE or SORT, you'll need to use an array formula: In cell BH4, enter...
  19. shamimarita

    [Answered] Error with VBA code from youtube example

    Hello Mike, I reviewed the screenshot of your VBA code, and I see where the issue might be originating. The runtime error you are encountering when selecting a month tab and running the associated macro can be caused by several potential problems. This code includes checks to ensure that the...
  20. shamimarita

    [Solved] How can I eliminate duplicates in a list and list in descending order?

    Hello, You can achieve this using a combination of Excel formulas to eliminate duplicates, sort the list in descending order, and display the results as desired. Since you're using Excel 2016 and some newer functions like UNIQUE aren't available, here’s an alternative approach: Extract Unique...

Online statistics

Members online
0
Guests online
125
Total visitors
125

Forum statistics

Threads
460
Messages
2,047
Members
2,819
Latest member
cwinsloan
Back
Top