Forum Discussion
BlakeHarrison
5 years agoQrew Captain
Michael -
Is your intent to convert the [All GC] field to text and list out the first 5 values, separated by "|", unless there is a value in the [Awarded Contractor] or [Job Number] fields, then show that field?
If so, then I would suggest massaging the original formula a bit and use something along these lines:
Case(True,
[Awarded Contractor]<>"",[Awarded Contractor],
[Job Number]<>"",[Job Number,
List(" | ",Part(ToText([All GC]),1,";"),
Part(ToText([All GC]),2,";"),
Part(ToText([All GC]),3,";"),
Part(ToText([All GC]),4,";"),
Part(ToText([All GC]),5,";")))
------------------------------
Blake Harrison - DataBlender.io
Quick Base Solution Provider
------------------------------
Is your intent to convert the [All GC] field to text and list out the first 5 values, separated by "|", unless there is a value in the [Awarded Contractor] or [Job Number] fields, then show that field?
If so, then I would suggest massaging the original formula a bit and use something along these lines:
Case(True,
[Awarded Contractor]<>"",[Awarded Contractor],
[Job Number]<>"",[Job Number,
List(" | ",Part(ToText([All GC]),1,";"),
Part(ToText([All GC]),2,";"),
Part(ToText([All GC]),3,";"),
Part(ToText([All GC]),4,";"),
Part(ToText([All GC]),5,";")))
------------------------------
Blake Harrison - DataBlender.io
Quick Base Solution Provider
------------------------------
MichaelHall
5 years agoQrew Trainee
Michael L. Hall | Excavation | Survey Mgr | RPM xConstruction, LLC (O) 214-239-4722 - Ext. 4926 | (M) 972-837-3350 | www.rpmxconstruction.com planroom@rpmxconstruction.com | mhall@rpmxconstruction.com | surveying@rpmxconstruction.com 5208 Tennyson Parkway | Suite 130 | Plano, TX 75024 cleanemail*** CONFIDENTIALITY NOTICE - The information contained in this transmission, including attachments, may be (1) subject to the Attorney-Client Privilege, (2) attorney work product, or (3) strictly confidential. If you are not the intended recipient of this message, you are notified that you may not disclose, print, copy or disseminate this information. If you have received this transmission in error, please reply and notify the sender (only) and delete the message. Unauthorized interception of this e-mail may be a violation of criminal law. |
- BlakeHarrison5 years agoQrew CaptainYou'll need to complete the bracket for that field
------------------------------
Blake Harrison - DataBlender.io
Quick Base Solution Provider
------------------------------