create a formula
I try to learn how to create a formula that says : if the cell is not blank, create this.
actually, I have a row ID generated with this :
=IF([ID de ligne]@row = ""; ""; "OFFRE" + "-" + [ID de ligne]@row) = OFFRE-043
I would like to create this ID only when the row [DATE DE L'OFFRE] is field.
Answers
-
I think this is what you're looking for.
=IF(ISBLANK([DATE DE L'OFFRE]@row); ""; "OFFRE" + "-" + [ID de ligne]@row)
-
thank you again Nic…how should I understand it ?… because the value is true, it gives the false option ?
-
It looks at the column (date de l'offre) and asks is it blank? If it is, then leave the cell blank. If it is filled in (there's a date), then complete the function of adding Offre plus the dash and the number in the other column together.
-
thank you for that…
-
You bet. Is that what you were wanting it to do? Or does it need to be changed?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!