Pulling from cells in cone column and want to put in a row based in matching cell - row

I'm trying to put any document type from column B that matches the Item Index in column A all in one row.enter image description here

Would data from A2 go with B2 and A3 with B3 etc? If so use CONCATENATE

Related

Check multiple columns and return to cell from other multiple columns

So I've added a SS of what i'm trying to do.
I need to check if Value(Col B) is Value3 and Cat (Col C) is Cat4
than fill corresponding cell (K5) under Cat/Vol table with Result +
(Number). In this case K5 should be filled with Result1(13).
Whenever a new row added under Incoming Data Table, Cat/Vol table
should also be updated with the new Result + Number. So incoming data table is dynamic and will be updated with rows only.
For instance if B11 is Value2 and C11 is Cat5 than "I4" should be
updated with the new Result and Number.
I tried placing IF and IF AND + REGEXTRACT formulas under each cell of Cat/Vol Table without anyluck. Thanks in advance.
My answer is not the most elegant but it was quick.
The heart of this formula is vlookup that searches using keys of 2 merged cells:
=ifna(ArrayFormula(vlookup($G2&H$1,{arrayformula($B$2:$B&$C$2:$C),$D$2:$E},2,false))
&"("&ArrayFormula(vlookup($G2&H$1,{arrayformula($B$2:$B&$C$2:$C),$D$2:$E},3,false))&")")
It's then copied to all the cells of new table.
Working solution is here:
https://docs.google.com/spreadsheets/d/1qbIg9nNfaOwQtSbk8R8-NkT_6cOy3AKr3Xafm72SsNI/copy

Highlight cells that have invalid data

I have a spreadsheet where a user will fill out a form which then outputs onto a google sheet with a timestamp. This is then concatenated with their name to get an input ID.
I have column A with the input ID and column B with the name of the person who is supposed to be in the columnID.
For example:
Column A: 11/11/11Bob Smith
Column B: Bob Smith
I would like to highlight any cell in column A that does not contain the contents of column B. There is a large amount of content in column B that changes on a weekly basis so it would not be worth the time to go through and set conditional formatting for each cell.
try:
=NOT(REGEXMATCH(A1, TEXTJOIN("|", 1, B:B)))*(A1<>"")
You can add conditional formatting to a whole range.
If data in column A should contain text of column B of the same row, this can be done with:
=not(REGEXMATCH(A1, B1))

Compare a value from two column and get matching value from another table Power BI

I am fairly new to powerbi and I need your help in one task on which I am stuck on.
Basically I have two tables and I need to compare the value from table one with a row of table 2 and return the output.
Table 1
I need to compare values in column a & b and get a match from table 2.
For example if row 1 has BY Green & BS HIGH then I need to check this value from matrix table below and return the output in column value as either 0 or 1.
Table 2
As you can see the Table 2 first row has value BY Green and BS low has a value '0'
Try this...
Index() returns a value from the matrix (in purple) based upon the intersections of the two match()'s. The first is the Vertical match in from the Table1:Col A; the second is the Horizontal match from table1:Col B. The value found at that intersection is returned.
... My apologies ... just saw this was a BI request... no worries...
First, Need fixup table2 as a lookup file:
First, click a cell in table 2 (don't edit), then Data menu >frm table/range, will bring up the Power Query window. Select columns B (not A) through Col F), then in the PQ Transform menu > Unpivot to create the new lookup table. this can either be saved as a new table or be used by reference.
Next, open and merge Table 1 PQ_Table 2 (Be sure to select BOTH Columns in BOTH Tables, in the same order). Then, expand the table tab following the merge expand the table tab. I only selected the value to return but you can return all the values to verify, then delete the unneeded columns.
Hope this helps...
Good Luck.

Datanitro - Create a sheet that has data validation in it?

I have one sheet (let's call it sheet1) that has a range of cells A1 to A20 filled. My python script is going to create a new sheet (sheet2) and fill in a few cells. The user then enters in a few other new cells, say B2 to B4. I want those cells (B2 to B4) to have data validation, a list from the cells in sheet1. Is this possible?

Using If Statement in Excel to populate when typing in a cell

I'm trying to find out if I can make a formula where I type in any value in a cell and then the next cell autopopulates with the city. Basically it will just be an address field for customers and the city will always remain the same. I just want it to be able to be blank if there is no data in the cell before it and if there is something typed in there it will populate the city in the next cell and the state in the next.
=if("a1"="","","city name") This is an if statement that is checking if the designated cell is blank and if it is then it will show blank, if there is something in there, then it will populate with what you have in "city name"
With “a cell” being in ColumnA (staring in A2), your city in B1 and State in C1 (they may already be labels) then:
=IF($A2="","",IF(ISEVEN(COLUMN()),$B$1,$C$1))
copied across one column and down may suit. If the resulting sequence is the wrong way round then either change EVEN to ODD or switch the contents of B1 and C1.