Return the unique data with one blank field between data?

jeffery216

New Member
Joined
Aug 22, 2021
Messages
8
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
  2. MacOS
Hi All,

I am new here! I am wondering if there is any way to make unique to return data like below column C? Thanks all!

1629619018664.png
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Try this (close with control+shift+enter, it's a matrix). And pull down

Excel Formula:
=IF(MOD(ROW(),2)=0,INDEX($A$2:$A$10,MATCH(0,COUNTIF($C$1:C1,$A$2:$A$10),0)),"")
 
Upvote 0
Try this (close with control+shift+enter, it's a matrix). And pull down

Excel Formula:
=IF(MOD(ROW(),2)=0,INDEX($A$2:$A$10,MATCH(0,COUNTIF($C$1:C1,$A$2:$A$10),0)),"")
Hi JEC,

Thank you for your help! It's work well! However, I am trying to understand the formula, and modify it to have 4 blank row between each data, but it resulted like column D, the data can not start from D2 : (

=iferror(ArrayFormula(IF(MOD(ROW(),2)=0,INDEX($A$2:$A$20,MATCH(0,COUNTIF($C$1:C1,$A$2:$A$20),0)),"")),"")

1629681267475.png
 
Upvote 0
Try:

Excel Formula:
MOD(ROW()-2,5)=0
 
Upvote 0
Try:

Excel Formula:
MOD(ROW()-2,5)=0
Hi JEC,

Thank you!!! It works brilliantly! One more question, is it possible to control the order by ascending or descending?

BS,
Jeffery Ng
 
Upvote 0
If you need a formula to work on anything other than Excel, then you should clearly state that & post in the General Discussion & Other Applications section of the board.
Whilst Excel & Sheets have a lot in common, they are not the same.
 
Upvote 0
About sorting, I prefer VBA. But you use google sheets?
 
Upvote 0

Forum statistics

Threads
1,223,993
Messages
6,175,835
Members
452,674
Latest member
psion2600

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