Add Value Between Each Row

ExcelToDAX

Board Regular
Joined
Feb 9, 2023
Messages
152
Office Version
  1. 365
Platform
  1. Windows
If I had the following table:

Mister
Excel
Dot
Com
Help
Me
Figure
This
Out

Using Excel formulas, how could I have it output as the following below table to insert "% of Values" in between each row of data:


Mister
% of Values
Excel
% of Values
Dot
% of Values
Com
% of Values
Help
% of Values
Me
% of Values
Figure
% of Values
This
% of Values
Out
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Try:

Book1
ABC
1MisterMister
2Excel% of values
3DotExcel
4Com% of values
5HelpDot
6Me% of values
7FigureCom
8This% of values
9OutHelp
10% of values
11Me
12% of values
13Figure
14% of values
15This
16% of values
17Out
18
Sheet1
Cell Formulas
RangeFormula
C1:C17C1=LET(a,A1:A9,s,SEQUENCE(2*ROWS(a)-1),IF(MOD(s,2),INDEX(a,(s+1)/2),"% of values"))
Dynamic array formulas.
 
Upvote 1
Solution

Forum statistics

Threads
1,215,219
Messages
6,123,689
Members
449,117
Latest member
Aaagu

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