I still need to understand how to make this work (if possible)

Below are my tables. My problem is that i need [item_status] from Table A and [LatLong] from table B to show up in my map view. The issue has been that Table A [Inventory_item_id] does not equal to Table B [Asset ID]. The ids are different:

For Example:
Table A ID - 145
Table B ID - 00000145

So i needed to some how compare and match those ids first, then show on my map - [LatLong] from Table B and the corresponding Item_status for that Asset ID the [Item_status] from Table A.

Solved Solved
0 9 328
1 ACCEPTED SOLUTION

Yes, you can use a Ref type with a formula. Those new VCs that are your Key columns are now what you need to use as Refs. [Assest ID] in TableB is now ONLY used to feed the new VC. Anything that previously used [Asset ID] should now use the new columns. That was the whole point in creating them.

View solution in original post

9 REPLIES 9

I canโ€™t work out what column you want to use to hold the table B data but an expression that would remove those number is something like:

ABS(Number([Table B ID]))

Number is used because im assuming table b id is not a number column.

Where would i put this expression?

Which Table, column and where inside that column (valid_if, Formula, etcโ€ฆ)?

Bahbus
New Member

Youโ€™re still using the old column to Ref Table A. And your expression to get [Item_Status] is also still based on the old column.

If i do not reference Table A how do i get the [item_status]?

No. Youโ€™re missing what Iโ€™m saying. You needed the Asset IDs to match so you could reference one table to the other. But all you did was set the new columns as your Key columns. You never changed which column references TableA. As per your screenshot, Asset ID is still showing as a Ref. But itโ€™s never going to link to anything. And the same goes for your attempt to get [Item_Status] because that expression is also still based on [Asset ID] which again canโ€™t Ref TableA.

I think I understand what you are saying. However, I cannot use ref type and put a formula in it. So I created a VC in each table so to get them equal in length. I am having trouble now getting the item status from one table to show up
on the other.

2X_9_940457e01c72464d635bc3c73cf461650f23936f.jpeg
Bahbus

Dave Papajcik

Regular

January 10
No. Youโ€™re missing what Iโ€™m saying. You needed the Asset IDs to match so you could reference one table to the other. But all you did was set the new columns as your Key columns. You never changed which column references TableA.
As per your screenshot, Asset ID is still showing as a Ref. But itโ€™s never going to link to anything. And the same goes for your attempt to get [Item_Status] because that expression is also still based on [Asset ID] which again canโ€™t Ref TableA.

Yes, you can use a Ref type with a formula. Those new VCs that are your Key columns are now what you need to use as Refs. [Assest ID] in TableB is now ONLY used to feed the new VC. Anything that previously used [Asset ID] should now use the new columns. That was the whole point in creating them.

Ok. I was thinking i could not do โ€œrefโ€ type if it was a VC. However - i made the changes you said - and it works! You are a LIFESAVER. Thank you so much!

You are very welcome.

Top Labels in this Space