ContributionsMost RecentMost LikesSolutionsRe: Open beta for grid reports has begun! Hi Brian, How do we provide feedback that the Give Feedback button is missing... Re: Open beta for grid reports has begun! Looks promising, but why doesn't the header row word wrap? You can no longer see many column heading names. Also, is there a way to move the Dynamic filters option from the right side to the top where the Search field is located? It is much more prominent and useful where it used to be in the old report style. Re: Gantt plugin: tasks with fractional start and end values I know this is an old thread, but this is exactly the issue I am encountering. The template field is locked as Date so you are unable to change it to Date/Time. Did you ever work get a work around? Apply Dashboard Filter across all Tabs Hi, Is there any way to apply a dashboard filter to cover all tabs? The filter works fine when all the reports are on the same tab, but if I want to split reports across tabs, then it's very inconvenient to ask the user to select the same item across every tab to get what they want. e.g. You select the Project via the "Main" tab and it will filter all reports across the "Main", "Calendar" and "Issues" tabs for that selected Project. Thanks. Re: How to Generate PDF with data from multiple children records Hi Mark, I did look at reports, but the issue is the formatting as a report only allows everything in horizontal columns. It also doesn't look good if i want to do other tasks like Quotes etc too. Looks like will have to stick to the custom coding for a while longer. Thanks. How to Generate PDF with data from multiple children records I am trying to see if there is a way to create a pdf that is able to loop a section depending on how many children records are linked to the parent. Here is the situation. I have a site record (parent). Each site may have one or more visits (children). I want the PDF to repeat a template section for each child record. It will have information such as Start Date/Time, and Job Description. e.g I know Quickbase has an API to generate a PDF using a static template, but is there a way get it to loop a section in a template for each child record that exists? Having a different template for each child quantity possibility seems inefficient. Thanks. Re: Button to Add Record via Pipeline, and refresh Record Hi Mark, Thanks for the tips. I managed to get it working using the code page sample. I didn't get around to trying point3&4 but understand the thought process and will remember it for possible future requirements. Thanks again for your assistance. Button to Add Record via Pipeline, and refresh Record Hi All, I am having troubles trying to via a button to add a new record then refresh the current record. As a button can't trigger a Pipeline, I've created a checkbox field to act as a trigger field. Currently the button uses an API_EditRecord to edit the checkbox and refresh the record. The API_EditRecord triggers my pipeline however the refresh happens before the Pipeline has a chance to complete. I saw this thread where we can create a HTML Code page to do a pause and refresh. https://community.quickbase.com/discussions/quickbase-discussions/save-new-record-pause-refresh/19873/replies/19876 I thought I might be able to tag that to the end of my current URL code to run afterwards, however it seems with the record refresh, it never gets to this part. My current code is as follows. URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & [Record ID#] & "&_fid_371=1" & "&apptoken=xxxxxxx" & "&rdr=" & URLEncode( URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl()) & URLRoot() & "db/" & Dbid() & "?a=dbpage&pageID="&715 &"&rid=" & [Record ID#] My question is: Is there a way to get the above code to run all parts or A way via the delay/refresh html code page to edit the checkbox which should trigger the Pipeline then continue with the delay/refresh html script? I used a Pipeline rather than an API_AddRecord as there are 30+ fields that need to be copied from one table record into another, plus update the record with the button with the related new record ID. Thanks. SolvedRe: Pipeline to run a URL formula field button The pipeline will be triggered by a scheduled time. It will then update some date fields. I want the last step of the pipeline to execute the button which utilises those changed date fields. Pipeline to run a URL formula field button Hi, I have a URL formula field button which runs some other automation functions. This works fine when manually pressed. I have no issues with the scheduling part. I'm sure its something simple, but what I can't figure out is what I need to do in the Pipeline to simulate "Pressing the button"? Thanks.