Forum Discussion
stribor45
Post Prodigy
2 years agoUpdate existing column value based on custom column
I have table A with the column City. I have a custom column in this table which basically does search in table B city column and if it finds it put 'Found" in that column. I would like to update th...
stribor45
Post Prodigy
2 years agotackytechtom is there a way that this can be done in DAX since I am a little more familiar with it and would also like to add some other pieces to this small code adjustment
- FreemanZ2 years ago
Super User
hi stribor45 ,
Try to plot a table visual with Call ID column, City Column, Custom Column and a measure like:Status =IF(MAX(TableA[Custom]) = "Found","Found!!!", "NA")- stribor452 years ago
Post Prodigy
but custom columns have to be generated first. where does your formula look into Table B to find a matching value in a column of Table formula has to go through each row of Table A and look if there is a city in the current row that matches the city column in table B and if found put the word "match" in the custom column