Data filtering using formulas > Openoffice formula does not work in excel

EvilC

Board Regular
Joined
Jul 26, 2014
Messages
74
Hello all,

I have used Openoffice Calc to make some reports. Now the company gave me excel to work with which i was excited about.
The problem is that some of my OO (OpenOffice) formulas don't do the trick anymore, and i'm not that great in formula debugging so thats why i turn to your expertise
m6zm3T_qaCifw-3rTfxmrKR7MZyKP3nQ7a8Bma0ZliUtYqJ_XqHjoT8_76BR_066oh3gpSrxaUUf4NujW2NjDYplCgIZ7WqfbRWpAwhTKT-w-pYve5dFI58PSeRxcmViTA


The following issue occurs:


1ABCDEFGHIJKLMNO
2Total contacts0FilteredTotal contacts0Filtered
3Telephone in4.54512TRUE#N/ATelephone in4.54512TRUE1Telephone in4545
4Work Order2.128FALSEWork Order2.128FALSE3Internet1259
5Internet1.259TRUEInternet1.259TRUE4Chat721
6Chat721TRUEChat721TRUE5E-mail532
7E-mail532TRUEE-mail532TRUE9Letter in2
8E-mail out238FALSEE-mail out238FALSE#N/A
9Letter out71FALSELetter out71FALSE#N/A
10Telephone out26FALSETelephone out26FALSE#N/A
11Letter in2TRUELetter in2TRUE#N/A
1200FALSE00FALSE#N/A
1300FALSE00FALSE#N/A
1400FALSE00FALSE#N/A
15

<tbody>
</tbody>


I extract data with two columns, Subject (A column) and Count (B column). I filter the subject and use: =OR(A3="Telephone in"; A3="Chat"; A3="Internet"; A3="E-Mail"; A3="Letter in") in D3. This gives met the TRUE or FALSE values. In E2 i used: =E2+MATCH(1;OFFSET($D$3;E2;0;$C$3-E2;1);0)where F2 is zero value. This returned the position of each TRUE value in the D column. After this i just need to copy the INDEX from the corresponding TRUE values into G column using: =IF(ISERROR(E3);"";INDEX(A$3:A$14;E3)).

Sothe problem here is the =E2+MATCH(1;OFFSET($E$3;E2;0;$D$3-E2;1);0) formula. Does anyone know what goes wrong here??

The I to O columns is what shows when working.

Hope someone can help me out here.

Regards,
Evil
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
@ Aladin: Data extraction is column A:Source and column B:count. Now column a could look different depending on the extraction. Thats why i need to filter the source first. In above example column A and B are raw data. Column N adn O is what i need to see.

@ Andrew, can you tell me if there is another option to get all TRUE statements from column D in a ascending order?


Thanks for your help guys.

Could Letter in occur more than once in the data area? If it does, shoult that be listed just once in the result list?
 
Upvote 0
Yes, it depends on your Windows Regional Settings, as do date and time formats, and the thousands and decimal separators.
 
Upvote 0
Now that we are solving this i run into another issue i cant seem to solve.....
After sorting the data i detract the data to get a weekly amount available. I then need to put the values into ascending order.

In openoffice i use this formula:
Code:
=SUMPRODUCT(K3<$K$3:$K$7)+SUMPRODUCT(K3=K$3:$K3)

Where K3 to K7 has numeric values and returns me the position in numbers.

Any ideas?

Really need to pickup a excel book !!

Regards,
Artur
 
Upvote 0
In Excel you need to coerce TRUE/FALSE into 1/0. One way is:

=SUMPRODUCT(--(K3<$K$3:$K$7))+SUMPRODUCT(--(K3=K$3:$K3))
 
Upvote 0
Great guys. Helped me out.

Thanks Andrew

@ Aladin, thanks for you effort, but it is solved. Thanks again
 
Upvote 0

Forum statistics

Threads
1,215,469
Messages
6,124,989
Members
449,201
Latest member
Lunzwe73

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