Forum Discussion
List of Items from Data Entry Form
- Dec 12, 2019
For such layout
in E5 you may use
=IFERROR(INDEX(dataentry[Department],MATCH(0,INDEX(COUNTIF($E$4:$E4,dataentry[Department]),0),0)),"")
and drag it down till the end of future range. With every new department in A it will appear in B.
Please, Sameer_Kuppanath_Sultan, attach a sample spreadsheet if you can do so without revealing any confidential information. It's a bit difficult to visualize what you're talking about from your brief description.
- Sameer_Kuppanath_SultanDec 12, 2019Brass Contributor
mathetes Whenever I add an item in Table A, (it may repeat) if it’s a new item it should list in Table B
I don’t want to use Pivot Table, since I have to place this list in another big calculation sheet.
Please see the attached sheet for your ref.
- JKPieterseDec 12, 2019Silver Contributor
Sameer_Kuppanath_Sultan There is no reason why you wouldn't just place the pivottable on a separate worksheet.
- Sameer_Kuppanath_SultanDec 12, 2019Brass Contributor
Because, i need a variety of report in a same table with this list,
any way I got a answer for this. Thank youJKPieterse
- Riny_van_EekelenDec 12, 2019Platinum Contributor
Try this in E5:
=UNIQUE(dataentry[Department])
Make sure that you clear all cells below.
NOTE: UNIQUE is a "Dynamic Array Function" (Beta) and available only through the Office Insiders program.
- Sameer_Kuppanath_SultanDec 12, 2019Brass Contributor
Negative, I am using microsoft 365, dynamic array option is not available in 365.
thank youRiny_van_Eekelen