Which Formula i should apply and how

arslan hussain

New Member
Joined
Mar 26, 2024
Messages
1
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
  6. 2011
  7. 2010
  8. 2007
Platform
  1. Windows
Hello Everyone,

Please find the attached sheet. I am experiencing an issue with my excel. I want to remove rows starting with the billing no but under these rows there are other data like date and total amount and i want to keep them in the file. Additionally, i want date and total amount in the columns instead of rows against the claim no rows. Can someone please guide me, how i can fix this?

1711481711516.png
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Is this something you wil do often? If so, you will need VBA code. If it is seldomly done, you can get away with a 5 steps process:
  1. Place a formula similar to this
    Excel Formula:
    =IF(MID($A2,1,7)="Billing",CONCATENATE(A2," ",B2," ",C2," ",TEXT(D2,"MM/DD/YY")," ",E2," ",F2)," ")
  2. Drag it down until the last row of your data set
  3. Copy/paste value this column on itself
  4. Place a filter on this column and delete blank rows
Please note that since your picture does not display column or row indexes I assumed you are starting in cell A1
 
Upvote 0

Forum statistics

Threads
1,215,978
Messages
6,128,053
Members
449,416
Latest member
SHIVANISHARMA1711

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