Okay that is what I figured. I have the formula
IIF([Text8]="Y","[Name]"," ") now. But instead of going to the name
field and returning the data in that field it is returning [Name].
Can I do something to my formula so it actually returns the
description (or data) that is in the name column?
:
You're welcome Penny glad to have helped and thanks for the
feedback. You cannot create a formula in a field (Text5) which
refers to itself. You'll have to add the information in another
field. You could hide Text5 in a view however if Text5 is a
calculated field.
I hope this helps. Let us know how you get along.
Julie
Project MVP
Visit
http://project.mvps.org/ for the FAQs and additional
information about Microsoft Project
This worked perfect JulieS. thanks so much.
Another question please. If a custom Text Field 5 has a Y in it
then go and
grab the "name" description and put it in Text 5? Or would it
have to go in
another field?
Penny
:
Hi Penny,
Yes, it is. The Date field will show "NA" if there is no entry,
so
your formula will need to test for that. In a Text or Flag field
enter the formula:
IIf([Date1] = ProjDateValue("NA"), "No", "Yes")
If Date1 has no date and therefore reads "NA", this will show
"No",
if there is any date, it will show "Yes".
I hope this helps. Let us know how you get along.
Julie
Project MVP
Visit
http://project.mvps.org/ for the FAQs and additional
information about Microsoft Project
I have a custom Date Field #1. I would like another Custom
Field
#2 (not
sure if it should be date or text) that says: If there is a
date
in Custom
Date Field 1 then put yes In Customer Field #2.
Is this possible?