![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
The DB that I have has a container field I use to store a picture and I am trying to figure out how to show only the records that the container field is empty (missing a picture). I am using FMP 8.5 Advanced. |
#3
| |||
| |||
|
|
The DB that I have has a container field I use to store a picture and I am trying to figure out how to show only the records that the container field is empty (missing a picture). I am using FMP 8.5 Advanced. Any help would be greatly appreciated!!! |
)
#4
| |||
| |||
|
|
Iced Tea<icedteas (AT) cox (DOT) net> wrote: The DB that I have has a container field I use to store a picture and I am trying to figure out how to show only the records that the container field is empty (missing a picture). I am using FMP 8.5 Advanced. Try a calc field with the text function getastext () on the container field, it should return various info about the picture. You can search for whatever the result is if there's nothing in the container. |
#5
| |||
| |||
|
|
snip Consider using a numeric result for the IsEmpty calc evaluation; c_flag_image = If( IsEmpty( image) ; 0; 1) or even better, and auto enter calc ( can't recall if fm8.5 had aec) aec_flag_image = If( IsEmpty( image) ; 0; 1) |
)![]() |
| Thread Tools | |
| Display Modes | |
| |