Converting Multi-Line Text to Formula - Rich Text, Issue with Line Breaks
I have read every single post on this board regarding this subject, and have tried every suggestion and nothing is working. Please help! I'm trying to take a user input Multi-Line Text field and convert it into a Rich Text field. When converting it directly to RT, it takes out line breaks. When I do SearchAndReplace, nothing: SearchAndReplace([Schedule],"\n","<br>") I've tried the following codes for line breaks / carriage returns, and none of them have worked: \n \r \\ \\n \\r <br> <cr> <enter> <return> <crlf> <nl> <newline> &nsbp; ↵ I even set up a debug field to display "this one" if the [Schedule] field contained any of the code/characters above. I'm completely at a loss, can someone help? ------------------------------ Danielle Wilczewski ------------------------------80Views0likes4CommentsCombine Formula List-User with List-User field
Can we combine a Formula - List-User field with a List-User field? I'd like to use the field as the 'Notify Whom' value in notifications and avoid creating a set of notifications for each field. Thanks! ------------------------------ Heather Bryant ------------------------------34Views0likes4Commentshow to count the number of specific characters
Hi All, Can you please help me with a function/code to count the number of specific characters in a string I would like to find the number of semicolon (;) in the string "hi;how;are;you;" thanks Pushpakumar ------------------------------ Pushpakumar Gnanadurai ------------------------------Solved107Views0likes7CommentsURL button to populate a field with the current user
Hi There, I currently have a url button that populates a certain field with the user that last modified the record. I need some help to change it from the user the last modified the record to the current user that pushes the button. is there anyway to modify the below for the above requirement? var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & [Record ID#] & "&_fid_30=" & URLEncode([Last Modified By]); "javascript:" & "$.get('" & $URL & "',function(){" & "location.reload(true);" & "});" & "void(0);"89Views1like12CommentsURL button to edit then refresh page
I put the following code into a Formula URL field. The purpose is to change the status to completed by clicking the button. URLRoot() & "db/" & [_DBID_LOTO] & "?a=API_EditRecord&rid="&[Record ID#]&"&_fid_37=Completed" Works great, but it then goes to the response page below. Which I don't want. How do I modify the code above to simply change the status and refresh the page. ------------------------------ Steven Nelson ------------------------------205Views0likes10CommentsFilter Report Based on User Role
Hi there, I'm still relatively new to Quick Base, but I was wondering if there is a way to filter a report based on the user role. We have two different levels of staff - Reviewers and Team Leads, and I've created roles for each. There's also a field for each in our reviews table. Each review has both assigned to it. However, Team Leads can also be assigned as a Reviewer, with someone else as the Team Lead. I want to create a report that excludes anyone from the Team Lead level. I know you can use filters such as where Reviewer <> the user listed in Team Lead, but as I mentioned above, a Team Lead could be assigned as the Reviewer with someone else as the Team Lead, so that wouldn't work. Is there any way to filter based on their role? Thanks!! ------------------------------ Brittany Zane ------------------------------52Views0likes8CommentsFormula Builder Cursor Position Incorrect
When editing a formula in the new formula builder, for example in a rich text field, where you position the cursor and where the edit takes places is not correct. For example I can position my cursor after a field name such as [fieldname] and start typing, but the text I type appears about 4 - 5 characters to the right in the middle of another part of my formula. Is anyone else having this problem? It's the same in both Safari and Chrome30Views1like5CommentsView query record if single record otherwise view query list
I am creating some buttons in a Formula - Rich Text field. They will allow users to quickly jump from one table to the next using the table to table relationships we have set up. Mainly what they will be seeing is a list of related records based on a query. For example, if I am in the Customers Table and I click on the Invoices button it will take me to the invoices table and I can see all the invoices related to that customer. If there is only one invoice I would like the button to take me directly to that invoice record and not view it in list mode. Is there a way to use the query and set up an if statement that would check the length of the query response and if there is only one then view that record. Below is an example of the query code I am using for one of the buttons. URLRoot() & "db/" & [_DBID_INVOICES] & "?a=q&query=" & "{'6'.TV.'" & [Record ID#] & "'}"67Views0likes3CommentsQR Code to access record in QB App
I'd like to create a QR code that pulls up a record in the QB app on a tablet when scanned with the tablet's camera app. This QR code would be a field in my Packing List table. When the packing list is printed out by our office staff, the QR code will be printed as well. Our warehouse team would like to scan the QR code and be taken straight to the record of the packing list in the QB app on their tablet instead of looking for the record in the app. I've had some success generating QR codes but having trouble directing to a record. Here's my code for the QR code. "<img src=\"http://chart.apis.google.com/chart?cht=qr&chs=120x120&chl="&[QR Code URL]&"\"alt=\"\"/>" where [QR Code URL] is 'https://cfkent.quickbase.com/db/bpc9xkysz?a=dr&rid=[Record ID#] ------------------------------ Howard Fu ------------------------------100Views0likes18CommentsI need to use the following field in a date range
I need to use the following field in a date range [cln enc date - date] It's a date-formula field. I am trying to check for current dates, within last week (7 days) last week 8-14 days and then 15-21 days. I try Boolean logic with AND and use ToDate, Today, etc but getting errors, such as mixing date and time. I just want date calculations and don't care about time of day. I have image of the date fields there are. There are a lot of date fields, but I didn't create most of these. The [cln enc date - date] is the field that is used to match encounter records. ------------------------------ Bob T. ------------------------------155Views0likes11Comments