How To Insert A Blank Row At Each Change In A Column In Excel

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 97

  • @mrtimtews
    @mrtimtews Год назад +1

    Thanks for the video, its still helped this Excel newb in 2023!

  • @jamesmurfin9724
    @jamesmurfin9724 4 года назад +2

    Saved me at least 2 hours of work today, and countless more in the future, thank you!

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Great! Glad you found it useful!

  • @GenerationGenius
    @GenerationGenius 3 года назад +1

    Excellent explaining

    • @ExcelBytes
      @ExcelBytes  3 года назад

      Thanks, glad your liked it.

  • @charbelmesa
    @charbelmesa 4 года назад +2

    Este video debería tener 1 millon de Likes

  • @MSOfficeQuickTips
    @MSOfficeQuickTips 4 года назад +2

    Thank you!!!!!!! I have been going nuts trying to figure this out! Thank you, thank you, THANK YOU!!!

  • @JohnyComeLately
    @JohnyComeLately 4 года назад +6

    Thank you! A google search linked me to you video and it was exactly what I was wanting to do.

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Great, glad you found it useful!

  • @252anand
    @252anand 4 года назад +1

    Thank you ..you saved me an hour.....

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Great! Glad you found it useful.

  • @altafhussain4425
    @altafhussain4425 4 года назад +2

    Thanks man!
    You're Genius.

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Thanks. Glad you found it useful.

  • @hungriecat6540
    @hungriecat6540 4 года назад +1

    for long i've been trying to figure this out, thanks !

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Glad you found it useful!

  • @alecambo
    @alecambo 5 лет назад +3

    Thanks, it worked perfectly!

    • @ExcelBytes
      @ExcelBytes  5 лет назад +1

      Thanks, glad you liked it!

  • @AldensAntlers
    @AldensAntlers 3 года назад +1

    THANKS SO MUCH

  • @MrSafwan786
    @MrSafwan786 4 года назад +1

    Thank you
    This is help me alot

  • @davidoregonoils7023
    @davidoregonoils7023 3 года назад +1

    Genius!

  • @TeddyMonacelli
    @TeddyMonacelli 4 года назад +1

    Thanks for this tip. Very simply and effective.

  • @Up4Excel
    @Up4Excel 2 года назад

    Very useful technique. I hadn't thought of using the find all feature to do stuff like this before 👍

  • @anwarhussain4997
    @anwarhussain4997 4 года назад +1

    Thank you. It was great help

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Glad it was useful for you.

  • @samanthastidham1780
    @samanthastidham1780 3 года назад +1

    This was fantastic!! Thank you for sharing!!

  • @francisf.massaquoijr2406
    @francisf.massaquoijr2406 3 года назад

    You really helped me, you are a legend... Thanks

    • @ExcelBytes
      @ExcelBytes  3 года назад

      Thanks, I'm glad you found this useful!

  • @Masterhack025
    @Masterhack025 2 года назад

    Thank you so much Micheal. Actually i was searching for same thing from last few days. all the best wishes for you channel.👍👍👍

    • @ExcelBytes
      @ExcelBytes  2 года назад

      I'm glad you found this useful!

  • @60secondrhymes
    @60secondrhymes 4 года назад

    Thank you Michael! Very useful Technique! Huge Time Saver

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Thanks! Glad your liked it.

  • @samawad4564
    @samawad4564 4 года назад +1

    Thank you!

  • @RawStrengthBharat
    @RawStrengthBharat 2 года назад

    You saved my 45 minutes

  • @Oracle_Zeus
    @Oracle_Zeus 4 года назад +1

    Life saver

  • @rose_shimmerling
    @rose_shimmerling 2 года назад

    It worked for me! CTRL + wouldn't work for me though. So what I did was click the insert tab and select 'Add Sheet Rows' and it worked. :) Thanks.

    • @mandypdx
      @mandypdx 5 месяцев назад +1

      ‘+’ is shift +, so you need ctrl shift +

    • @rose_shimmerling
      @rose_shimmerling 5 месяцев назад

      thanks :) @@mandypdx

  • @doreen9051
    @doreen9051 3 года назад

    Thanks so much!

  • @joelgordy2635
    @joelgordy2635 5 лет назад +7

    This seems to work as long as you don't have FALSE in two or more adjacent rows (data changed again on next row). Two FALSE in two rows will yield two blank rows above the first FALSE. Three FALSE in three rows will yield three blank rows above the first FALSE. Maybe I missed something?

    • @ExcelBytes
      @ExcelBytes  5 лет назад +1

      No, you are correct. This process didn't account for that scenario. I will need to work on a different process altogether to deal with that issue, Will probably result in a new video.

    • @ExcelBytes
      @ExcelBytes  5 лет назад +3

      I did find this VBA code that works in this situation. It assumes you have headers in row 1, your data starts in row 2, and column B is where the changes occur that you want to check:
      Sub InsertRowsAtValueChangeColumnB()
      Dim X As Long, LastRow As Long
      Const DataCol As String = "B"
      Const StartRow = 2
      LastRow = Cells(Rows.Count, DataCol).End(xlUp).Row
      Application.ScreenUpdating = False
      For X = LastRow To StartRow + 1 Step -1
      If Cells(X, DataCol).Value Cells(X - 1, DataCol) Then Rows(X).Insert
      Next
      Application.ScreenUpdating = True
      End Sub

    • @evgueniteplits5687
      @evgueniteplits5687 4 года назад

      @@ExcelBytes Hi! Is there any new solution for the case Joel described? Thanks!

    • @ExcelBytes
      @ExcelBytes  4 года назад

      @@evgueniteplits5687 See this tutorial: www.excel-bytes.com/inserting-a-blank-row-at-a-column-change-update-in-excel/

    • @jeanettecarey9031
      @jeanettecarey9031 9 месяцев назад

      I am so glad it wasn't just me. I thought I was for sure doing it wrong (repeatedly)

  • @budhori1201
    @budhori1201 5 лет назад

    Love You sir, You solved my problem

    • @michaelrempel2905
      @michaelrempel2905 5 лет назад

      Thanks! Glad your liked it and it was useful for you.

  • @martinsawe6341
    @martinsawe6341 2 года назад

    very useful but how will i make an empty row automaitcally show a value at the end of the row like an interest

    • @ExcelBytes
      @ExcelBytes  2 года назад

      Can you be more specific? If you want you can send me an e-mail with more details and/or a sample of what you want to do. Send to mrempel@excel-bytes.com

  • @fp715
    @fp715 5 месяцев назад

    For us that use this maybe once or twice a month. How do we do it without shortcuts? I know it takes longer just can’t remember the combos

    • @ExcelBytes
      @ExcelBytes  4 месяца назад

      I used 4 keyboard shortcuts in this tutorial:
      Ctrl F: Home>Find&Select>Find
      Ctrl C: Home>Copy
      Ctrl +: Home>Insert>Insert Sheet Rows
      Ctrl -: Home>Delete>Delete Sheet Columns

  • @JulianVilla-q5g
    @JulianVilla-q5g Месяц назад

    What about if there are multiple false in a row?
    That didn't seem to work for me when there are multiple false the other rows were perfect except when it came to multiple repeated false in a row

    • @ExcelBytes
      @ExcelBytes  Месяц назад

      Try this tutorial: ruclips.net/video/qWbaGnZlLn8/видео.html

  • @SuryaAchanta
    @SuryaAchanta Год назад

    Hello how you added heading of the cell after =..............like =[@salespeople]

  • @muskanjalan9574
    @muskanjalan9574 2 года назад

    how we can put sum in all the added rows for above number of columns

    • @ExcelBytes
      @ExcelBytes  2 года назад +1

      Your probably better off using the SUBTOTAL function than this process.

  • @milliehanson750
    @milliehanson750 11 месяцев назад

    Hello thanks for the video. - we have been trying to do this. But when we try to highlight our column, the insert box (e.g to select entire rows etc) does not show up (and the ctrl + formula doesn't work), so we can't select this option. The only thing that happens is an automatic insert of another column next to it. Any ideas? Thanks

    • @ExcelBytes
      @ExcelBytes  11 месяцев назад

      Millie, I'm not sure what the issue may be, could be a couple of things. If you want, I'd be happy to do a phone or video call to see what the issue is. If you want to pursue this, please send me an e-mail at mrempel@excel-bytes.com and we can continue there.

  • @ganesh55507
    @ganesh55507 Год назад

    if we have only one row for one unique number , its now working

    • @ExcelBytes
      @ExcelBytes  Год назад

      Try this one: ruclips.net/video/qWbaGnZlLn8/видео.html

  • @megangrehan3213
    @megangrehan3213 3 года назад

    Great video very easy. I had a problem when I had cells change one after the other. So there were three falses in a row which is correct but when I went to insert it inserted three rows after the three falses. So they didnt separate. Any ideas?

    • @ExcelBytes
      @ExcelBytes  3 года назад

      This video addresses that issue: ruclips.net/video/qWbaGnZlLn8/видео.html

    • @megangrehan3213
      @megangrehan3213 3 года назад

      @@ExcelBytes Thank you!!

  • @Masterhack025
    @Masterhack025 2 года назад

    but what will happened when "salespeople" column has single row data not multiple row data??? please reply.

    • @ExcelBytes
      @ExcelBytes  2 года назад

      Check this one out: ruclips.net/video/qWbaGnZlLn8/видео.html

  • @mohammadfaris8711
    @mohammadfaris8711 3 года назад +1

    ctrl + + is not working for me

    • @ExcelBytes
      @ExcelBytes  3 года назад

      You can just right click, then click on "insert" and choose entire row and click OK

  • @tantukumardas684
    @tantukumardas684 5 лет назад

    sir, I am not getting solution for those cells having only one data and no other same value. For example, only one cell contains ed then it may not give the same result.

    • @ExcelBytes
      @ExcelBytes  5 лет назад

      I did a follow up that addressed this issue: www.excel-bytes.com/inserting-a-blank-row-at-a-column-change-update-in-excel/

  • @aslowikowski
    @aslowikowski 4 года назад

    What's the shortcut command to copy down the formula you use at 3:40?

    • @ExcelBytes
      @ExcelBytes  4 года назад +1

      Whenever you double click on the lower right corner of a cell (cursor turns into a solid plus sign) that has anything in it, Excel will automatically copy it down as far as any entries in the column immediately to the left or right. If there is nothing in a column to the left or right, nothing will happen.

  • @nitintalekar2322
    @nitintalekar2322 4 года назад

    Hello, sir how can I add blank lines between data by different quantity number wise

    • @ExcelBytes
      @ExcelBytes  4 года назад

      The theory would be the same, but I need to be more clear on how your quantity number changes. Can you provide an example file? Send to mrempel@excel-bytes.com

  • @budhori1201
    @budhori1201 5 лет назад

    Sir problem solved but i want serial number also changed after blank rows (always start 1 after blank rows) plz solved my problem

    • @ExcelBytes
      @ExcelBytes  5 лет назад

      Can you please explain further what you want? Possibly send me a sample file with what you want to do with an explanation. Send to mrempel@excel-bytes.com

  • @hemachandra4315
    @hemachandra4315 4 года назад

    How to add the total price in the space of ROW "F"

    • @ExcelBytes
      @ExcelBytes  4 года назад

      Can you please explain your question a bit better? "F" is not a row but a column. Do you want to add up the entire column "F" or insert subtotals in column "F" at each blank row? Or is it something else?

  • @bernardblumberg803
    @bernardblumberg803 6 лет назад

    Excellent, but still not scrolling in to formulas! Especially for us old folk.

  • @VijayKumar-zd7ou
    @VijayKumar-zd7ou 6 лет назад

    Hello sir, my one query is how to many name a column and repeated some 4,5,3,7,2 time how to coloured at once in excel then sort by colour show grouping but every group show different different colour. Please help😂

    • @ExcelBytes
      @ExcelBytes  6 лет назад

      Can you send me a file showing more detail of exactly what you want and I'll see if I can help. Send to mrempel@excel-bytes.com

    • @VijayKumar-zd7ou
      @VijayKumar-zd7ou 6 лет назад

      Excel Bytes sir, I m send the sample file ur email address. please help 😂 file subject name of grouping color

  • @MrPrince0277
    @MrPrince0277 4 месяца назад

    This method FAILS to work when there are 2 consecutive different entries entries in a column.

    • @ExcelBytes
      @ExcelBytes  4 месяца назад

      That's why I created this tutorial: ruclips.net/video/qWbaGnZlLn8/видео.html