Transpose multiple rows and columns into one column with ignoring blanks

parankush

New Member
Joined
Jun 11, 2020
Messages
36
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
  6. 2011
  7. 2010
  8. 2007
  9. 2003 or older
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
i want to Transpose multiple rows and columns into one column with ignoring blanks. I have a large amount of data. But i can provide with a sample.Is there any VBA code i can use for it.
1591894818027.png
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Book1
ABCDEFGHIJ
1
2
3
4MonthABCMonth
5Jan611A
6Feb3915B
755C
8April7124.33Jan
9May9151.333FALSE
10June11-1.66676
1111
12Feb
133
149
1515
16FALSE
175
18FALSE
195
20April
217
2212
234.33
24May
259
2615
271.333
28June
2911
30FALSE
31-1.6667
Sheet1
Cell Formulas
RangeFormula
J4:J259J4=IFERROR(INDEX(IF(Data<>"",Data),INT((ROW(1:256)-ROW(1:1))/4)+1,MOD(ROW(A1:A256)-ROW(A1),4)+1),"")
Dynamic array formulas.
Named Ranges
NameRefers ToCells
Data=Sheet1!$D$4:$G$10J4





So i have done a part of the question. This is not a complete solution.
My Question is how to remove the False which is because of Blank from the array without using Filter Formula?
 
Upvote 0

Forum statistics

Threads
1,216,495
Messages
6,130,979
Members
449,611
Latest member
Bushra

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top