mmonsalveg Posted May 29, 2012 Posted May 29, 2012 Hello , i would like to know if i can convert a field into a bar( black rectangle) when it gets some typed on it. example: field1 = " empty field" ---- no black rectangle field1 = " whatever data on it" -------- shows black rectangle thank you very much M
Greg Hains Posted May 29, 2012 Posted May 29, 2012 Hi. What I do is in every one of my tables I have a single field called "_dummy_field" and I placed that field where I want my bar - such as over the top of the field whose contents you are checking (eg "ClientName"). This field has no fill color or outline, but then I apply conditional formatting to it so that If Not IsEmpty(ClientName) then fill color is Black. Works well. Does that make sense? Cheers, Greg
eos Posted May 29, 2012 Posted May 29, 2012 You can't convert a field to another object, but you change the field's appearance based on its data, or in this case, the presence/absence of data. Try conditional formatting, like: Add, Formula is: If [ not isEmpty ( Self ) ], and experiment a bit with the available options, especially Fill Color.
eos Posted May 29, 2012 Posted May 29, 2012 Our replies overlapped … What I do is in every one of my tables I have a single field called "_dummy_field" and I placed that field where I want my bar I was also thinking of a dummy field, if one really needs a “black bar”; now I realize that it's easier (and doesn't require dummy fields that clutter your schema) to just place the same field on the layout a second time and format that one conditionally, e.g. make it a rectangle with black fill and black text.
comment Posted May 29, 2012 Posted May 29, 2012 Hello , i would like to know if i can convert a field into a bar( black rectangle) when it gets some typed on it. For what purpose?
Recommended Posts
This topic is 4618 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now