Formula/Table To Make Data Readable

karlm14

New Member
Joined
Nov 12, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi,

New to the forum looking for some excel help.

I have a table of raw data which in different columns shows; serial number, last seen on network and last location on network amongst other things. How do I build a table that gives me an easy to read status for each device of when it was very first seen on the network and at what locations and then the next time it was seen and at what location etc etc.

Something like the following or anything that is more readable than line by line;

001
01/01/2021 - Location A
10/01/2021 - Location B
002
01/01/2021 - Location D
20/01/2021 - Location A

Data currently looks like

seriallast seen on networklast location
00101/01/2021A
00201/01/2021D
00220/01/2021A


Hope this makes sense, sorry for not being as clear as I would like.

Thanks

K
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Best I could do. I think a macro would make it just the way you like though.
MrExcelPlayground4.xlsx
ABCDEF
1seriallast seen on networklast locationSerialDate - Location
20011/1/2021A0011/1/2021 - A
30021/1/2021D0011/10/2021 - B
40021/20/2021A0011/11/2021 - D
50011/10/2021B0011/13/2021 - B
60011/11/2021D0021/1/2021 - D
70031/12/2021C0021/20/2021 - A
80011/13/2021B0031/12/2021 - C
90031/14/2021D0031/14/2021 - D
100031/15/2021C0031/15/2021 - C
Sheet37
Cell Formulas
RangeFormula
E2:E10E2=INDEX(SORT(A2:C10,{1,2},1),,1)
F2:F10F2=TEXT(INDEX(SORT(A2:C10,{1,2},1),,2),"m/d/yyy")&" - "&INDEX(SORT(A2:C10,{1,2},1),,3)
Dynamic array formulas.
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E2:F10Expression=ISODD(COUNTA(UNIQUE($E$2:$E2)))textNO
 
Upvote 0
Solution

Forum statistics

Threads
1,214,846
Messages
6,121,905
Members
449,054
Latest member
luca142

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