Forum Discussion
DrExcel_Excel_MVP
Feb 25, 2024Copper Contributor
Use GROUPBY in Excel to add Blank Rows/Cols After Each Group
Use GROUPBY in Excel to add Blank Rows/Cols After Each Group to add blank Rows: =LET( a, GROUPBY(B4:D13, E4:F13, SUM, , 2), DROP(IF(BYROW(--(a = ""), SUM), "", a), -2) ) to add blan...
SergeiBaklan
Feb 25, 2024Diamond Contributor
Nice idea. If to use logic directly
=LET(
a, GROUPBY(B4:D13, E4:F13, SUM, , 2),
DROP( IF( BYROW( a = "", OR ), "", a), -2)
)
- DrExcel_Excel_MVPFeb 28, 2024Copper Contributormany thanks for this great contribution