Forum Discussion
bhelou
6 years agoResponsive Resident
Card text filter
Dear Community , i have a search items and i need to show the contet of the search in a card but it is giving me the last satus of the enrty , can i make it blank when i open it or clear it , ...
- 6 years ago
You are probably using MAX or Last which is why you are getting the last one. What you could do is something like:
Comments =
IF(COUNTROWS(ALL('Table')) = COUNTROWS('Table'),BLANK(),<whatever your calculation is>)
Greg_Deckler
6 years agoCommunity Champion
You are probably using MAX or Last which is why you are getting the last one. What you could do is something like:
Comments =
IF(COUNTROWS(ALL('Table')) = COUNTROWS('Table'),BLANK(),<whatever your calculation is>)
- bhelou6 years agoResponsive Resident
Thank you very much it worked perfectly . what a solution 🙂