Summarizing a table excluding lines datas which I do not want - filter

I have a table called "Propostas" where have all comercials propouses. I wanto to summarize it excluding the lines where two conditions are attempted.
I Tried:
SUMMARIZE(FILTER('Propostas',
AND(Condition1, Condition2)),
'Propostas'[Colum1],
'Propostas'[Colum2],
'Propostas'[Colum3],
'Propostas'[Colum4],
'Propostas'[Colum5])
But it is bringing juts the lines which I do not want !!
Somebody could help me?

Related

Filtering duplicates in DAX based on variables

Not sure if this problem is better addressed in DAX (powerpivot) or powerquery.
Anyways the goal remove certain duplicates of material numbers based on variables in columns Q,P and O. See below material number duplications need to be filtered on incorrect lead-time values. for example material number 6928 needs the row 2,3,4,5 removed or filters as this has the correct lead-time of 7 days in rows 6-9. this can be verified by column R (regular vendor).
happy to share the file if it helps.
manual filter result outcome should = this
if you need more information, please let me know. thanks
Basically I needed to clean my data before merging, rather than cleaning afterward.
I found the duplications in one of my merged tables and removed them by filters. Once I refreshed my data queries, the duplications I wanted removed had gone.

Power Query - conditional replace/clear entire cell in multiple columns

I'm trying to clear the entire cell if it doesn't contain a given keyword.
I've managed to do this for one column:
Table.ReplaceValue(#"PrevStep",each [#"My Column"], each if Text.PositionOf([#"My Column"],"keyword")>-1 then [#"My Column"] else null,Replacer.ReplaceValue,{"My Column"})
The problem is I need to iterate/repeat that step for a number of columns... the number of columns may vary and column names also may be different every time. I can have all those column names put into a list but I'm not able to use it.
The solution I'm looking for may look like this
for each ColNam in MyColumnsList
Table.ReplaceValue(#"PrevStep",each [#"ColNam"], each if Text.PositionOf([#"ColNam"],"keyword")>-1 then [#"ColNam"] else null,Replacer.ReplaceValue,MyColumnsList)
next
but this is not the VBA code but Power Query M - and of course the problem is with #PrevStep as I would see it like a recursions... again... do not know how to process.
Is the path I follow correct or should it be done some other way
Thanks
Andrew
Unpivot your columns to turn all the columns into two columns. Apply your replacement to the single value column then pivot it back into the original format

Google Sheets Query Sorted Results

I am writing a query function that I would like sorted. I have this figured out. What I cannot solve is attempting to insert 2 blank rows between the sorted results. Is this at all possible? Here is my query as it currently stands. Works perfectly as written. Just would like to have a 2 row gap between results.
Thank you.
=query('Form Responses 1'!A:CM,"Select B,C,D,I,L,AU,AX Where K = '"&Titles!B2&"' OR AW = '"&Titles!B2&"'Order by K,AW",0)
enter image description here
Since you've clarified your question to say that you want two blank rows, only to be added at a specific point in your query results, I've created another answer. But you haven't answered my question about what criteria you have for deciding where to insert these two lines, so I've made an assumption based on your data. This formula should be easily adapted if you have some other criteria for where to insert the blank lines. See my added tab HelpGK in yur sample sheet.
Try this formula, where you have your query:
={query('Data Sheet'!A:J,"Select B,C,D,E,F,H,I Where E='' and (G = 'ABC' OR J = 'ABC') Order by J,G",0);
{"","","","","","",""};
{"","","","","","",""};
query('Data Sheet'!A:J,"Select B,C,D,E,F,H,I Where E<>'' and (G = 'ABC' OR J = 'ABC') Order by J,G",0)}
Note that I don't believe your exact Desired Result can be obtained from your Data sheet. You are missing data rows. But this formula produces the result in the screenshot you provided.
EDIT:
Just realised that I created an answer for a single column of data.
Please share a sample sheet since this is not your case.
You can try this formula, but you'll need to replace this text "A4:A8" with your exact query:
=ArrayFormula(flatten(split(A4:A8 & "♥ ♥ ","♥",0,0)))
Note that the column with the "~" values in the blank cells is just to demonstrate what is happening.
If you had provided a sample sheet, with sample data, it would have been easier.
Let me know if this works for you. If not, please provide a sample sheet, with sample data, and let us know what else you need.
Be aware that the you can't put any values into the two inserted rows of blank cells, or the arrayformula will fail. But if you are planning to save the results of this as values, then pasted into place, then you could overwrite the blank cells, if desired.
Also be aware that FLATTEN is an undocumented function, and may possibly be removed from Sheets. If this is for a critical application, and alternative formula can be provided. Let us know if that is a concern.
I will delete my earlier answer, which mistakenly focused on a one column result.
This messy formula seems to handle multiple columns. If it works for you, I'll see if I can simplify it or clean it up. I can also provide details of the steps it is doing, if necessary. Replace the text "A4:C8" in this formula with the range where your query result currently exists. Once you've tested that, you can replace the text "A4:C8" with your actual query statement, to have everything done in one formula, if you want.
=ARRAYFORMULA(SUBSTITUTE(SUBSTITUTE(SPLIT(FLATTEN(ARRAYFORMULA(SPLIT(TRANSPOSE(ARRAYFORMULA(QUERY(TRANSPOSE(ARRAYFORMULA(SUBSTITUTE(A4:C8," ","♥"))),,99^99)&"♦~♦~")),"♦",1,0)))," ",1,0),"~",""),"♥"," "))
Please let me know if this works for you. If you have any issues, please share a sample sheet, with only sample data, and clarify what isn't working as you expect.

delete all lines from a table with CODEIGNITER

How can I delete all lines from a table with codeigniter. Just a line I know, just specify the id from this line, but what about all lines at once?
Thanks
$this->db->empty_table('my_table');
Put it in your model and don't give any where before that.

Pasting a smaller number of columns than selected duplicates data

I tried to search for a similar question but did not find it - I think it may be out there and any help is appreciated.
I have a simple handsontable implementation - the issue only appears when you copy a certain number of columns from excel, 2 for example, and the paste into handsontable where a larger number of columns has been selected (say 10).
It happens even in standard handsontable examples such as the example pasted here.
All I did was select all the records, delete them and then select an entire row and pasted two columns. As you can see the data was duplicated for the following columns sample table.
Has anyone seen this before?
Is there a solution I am obviously missing?

Resources