Formula: First non blank after last blank cell in Range

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 23

  • @GrainneDuggan_Excel
    @GrainneDuggan_Excel 9 หลายเดือนก่อน +2

    ❤ thanks Victor. Your BYROW explanation is the clearest I have seen.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน +1

      Thanks, Grainne, for the compliment. I am glad it helps you understand.

  • @IvanCortinas_ES
    @IvanCortinas_ES 9 หลายเดือนก่อน +1

    I start watching a new video of Victor and I think... (there's no way he'll surprise me again).
    Well, he surprises me twice. Highly recommended. Thank you.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      Thanks Ivan for your kind words

  • @jazzista1967
    @jazzista1967 9 หลายเดือนก่อน +1

    Victor.... my mind just exploded this early morning ... I think i have to rewatch the video 10 more times to understand the logic ......hahaha...

  • @excelpro365_1
    @excelpro365_1 9 หลายเดือนก่อน +1

    What a great welcome from GES.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      Thank you very much

  • @stevereed5776
    @stevereed5776 9 หลายเดือนก่อน +1

    Thanks Victor.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      You are welcome, Steve

  • @nadermounir8228
    @nadermounir8228 9 หลายเดือนก่อน +1

    Perfect Video 📹 👌 Thank you Victor

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      You are welcome

  • @raymondchew1331
    @raymondchew1331 8 หลายเดือนก่อน +1

    Thanks Sir! Could I know whether we can use CHOOSEROWS instead of FILTER function? CHOOSECOLS is used in this video to extract the columns we want. This makes me think CHOOSEROWS to replace FILTER

  • @williamarthur4801
    @williamarthur4801 9 หลายเดือนก่อน +1

    I slightly misunderstood, and thought I was supposed to get the last available for 'Jumper cables', I used
    Indirect inside offset,
    LET( o, OFFSET( INDIRECT( CELL("address", XLOOKUP(TRUE,ISBLANK(F4:O4),F4:O4,,0,-1))),0,1),
    p, XLOOKUP(FALSE,ISBLANK(F4:O4),F4:O4,,0,-1), IF( O4="",p,o))
    One thing, I did not know that was hwo you looked up blank in xmatch,, just skip, I have tried using
    using "" of course got NA and just gave up, so thanks for that.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน +1

      Yea, one of the simple tricks that can go unnoticed

  • @geminilicious2009
    @geminilicious2009 20 วันที่ผ่านมา

    How can I get the result as the dates on which there is start of the number

  • @Softwaretrain
    @Softwaretrain 9 หลายเดือนก่อน +1

    Great challenge Victor, I came up with other solutions as below:
    =IFERROR(INDEX(B5:K5,XMATCH(,B5:K5,,-1)+1),"")
    =IFERROR(INDEX(B5:K5,MATCH(2,IF(B5:K5="",1,""))+1),"")
    =IFERROR(INDEX(B5:K5,MAX((B5:K5="")*SEQUENCE(,COLUMNS(B5:K5)))+1),"")
    =IFERROR(TAKE(DROP(XLOOKUP(,B5:K5,B5:K5,,,-1):K5,,1),,1),"")
    =LOOKUP(2,HSTACK(1,IF(B5:K5="",1,"")),B5:K5)
    =IFERROR(INDEX(B5:K5,MAX((B5:K5="")*COLUMN(B5:K5))),"")
    =IFERROR(CHOOSECOLS(B5:K5,MAX((B5:K5="")*COLUMN(B5:K5))),"")
    =IFERROR(INDEX(B5:K5,XMATCH(TRUE,LEN(B5:K5)=0,,-1)+1),"")

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      Excellent Alternatives. I love all of them.

  • @geminilicious2009
    @geminilicious2009 20 วันที่ผ่านมา

    I want my results to be the month in which the first order was delivered... anyone can hep with this formula please..

    • @ExcelMoments
      @ExcelMoments  20 วันที่ผ่านมา

      You could use say an XLOOKUP like this for row 5 =XLOOKUP(TRUE,B5:K50,$B$4:$K$4), where your dates are in B4 to K4

    • @geminilicious2009
      @geminilicious2009 19 วันที่ผ่านมา

      @@ExcelMoments Thank you so much.

  • @excelenthusiasts
    @excelenthusiasts 9 หลายเดือนก่อน +1

    Hi,
    Assuming the dates in row 4 are consecutive, this formula works as well
    =XLOOKUP(XLOOKUP(TRUE,B5:K5="",$B$4:$K$4,,,-1)+1,$B$4:$K$4,B5:K5,"")
    Hope this helps.

    • @ExcelMoments
      @ExcelMoments  9 หลายเดือนก่อน

      Thanks, Ashish, It's always good to hear from you. great formula, once that assumption holds true

    • @excelenthusiasts
      @excelenthusiasts 9 หลายเดือนก่อน

      @@ExcelMoments Thank you.