Hi @alpatel ,
Could you please share more details about your scenario? Do you have another list where contains county names along with unique zip codes? If there is a list it will be quite simple.
I assume the list is named Counties, with county names in Title column and zip codes in ZipCode column. Both columns are of type text. So, Text property of DataCardValue8:
Coalesce(LookUp(Counties, ZipCode = DataCardValue6.Text, Title),"None")
If you do not have the Counties list, according to the formula you give, please try below in Text of DataCardValue8:
If(DataCardValue6.Text="11727"||DataCardValue6.Text="11324", "Suffolk County","None")
Best regards,