Selective hiding of calculated field

P

PA

I remember finding this via a Google search about a year ago and now cant
find it.
I have a calculated field, obviously the result shows in every row. I only
want to display in selected rows. I remember this is done with flag fields,
but cant seem to get it to work. Help would be appreciated, and sorry for
any repetition.
Paul
 
J

JackD

You can use a text on a flag field (or any other field you like) to
determine what the result of the formula is.

For example if you have a formula in text1 that is [finish]-[start] and you
want it to display for any task where flag1 is set to yes, then change the
formula like this:

iif([flag1], [finish]-[start] ,"")

If flag1 is yes (true) then it will use your formula, if it is false then it
will be blank ("")

-Jack
 
P

PA

That was what I saw in Google - My thanks.

JackD said:
You can use a text on a flag field (or any other field you like) to
determine what the result of the formula is.

For example if you have a formula in text1 that is [finish]-[start] and you
want it to display for any task where flag1 is set to yes, then change the
formula like this:

iif([flag1], [finish]-[start] ,"")

If flag1 is yes (true) then it will use your formula, if it is false then it
will be blank ("")

-Jack


PA said:
I remember finding this via a Google search about a year ago and now cant
find it.
I have a calculated field, obviously the result shows in every row. I only
want to display in selected rows. I remember this is done with flag fields,
but cant seem to get it to work. Help would be appreciated, and sorry for
any repetition.
Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top