Warning Symbols on dependent drop down options and selections.

We are having a weird issue on our dependent dropdowns. Any help would be greatly appreciated. 

we have a table with 3 columns: 

Business Areas, Sub Business Areas, Primary Business Areas 

We have tables that hold the data called; 
Business Types: ID | Business Type |
Sub BusinessTypes: ID | Business Type ID | Sub Business Type


Current settings. 
Business Areas: EnumList, base type "Text", Valid if: LIST([_THISROW].[Primary Business Area]) + SELECT(Business Types[Business Type], NOT([ID] = [_THISROW].[Primary Business Area]))

Sub Business Areas: EnumList, Base type: Ref, Referenced table: Sub Business Types, Valid if : SELECT(Sub Business Types[Sub Business Type],
OR(
[Business Type ID] = LOOKUP([_THISROW].[Primary Business Area], "Business Types", "Business Type", "ID"),
IN([Business Type ID], SPLIT(SELECT(Business Types[ID], IN([Business Type], SPLIT([_THISROW].[Business Areas], ","))), ","))
))



Screenshot 2023-05-15 121801.pngScreenshot 2023-05-15 121749.pngScreenshot 2023-05-15 121731.png



0 3 203
3 REPLIES 3


@Beta7 wrote:

SELECT(Sub Business Types[Sub Business Type]


The values in a Ref column must match the values in the referenced table's key column.

Alright, ive gone through it again and to me it doesn't seem like there is anything miss matched. ill provide some more data and maybe that will help. 



Table: Business Types (this is for looking up)

IDBusiness Type
dc2df690Personal Injury Law
27f5b9fdBankruptcy Law
afe5b002Criminal Defense Law


Table: Sub Business Types (for looking up sub types)

IDBusiness Type IDSub Business Type
7ff03ededc2df690Car Accident Law
93b501bcdc2df690Medical Malpractice
5f12324ddc2df690Product Liability

 



now the table we are working with 
"Companies"
Column: Business Types
Type: EnumList
Base type: REF
Base type details: Slice Business Types (slice)

when in the working with the table Companies, the user selects the "business type" the options for selects have the yellow warining symbol next to them. 

Im not sure if or what more infomation i should show to help. we are a bit stumped. 






@Beta7 wrote:

infomation i should show to help



@dbaum wrote:

The values in a Ref column


Top Labels in this Space