You are viewing limited content. For full access, please sign in.

Question

Question

Report of all forms created

asked on June 17, 2021

I need to pull a report that includes all forms created (published or not) year-to-date (YTD) for the entire organization. Is there a way to do this?

Even viewing the creation date would help, but I can't even find a way to display that. In Manage tab, all it has is the last modified date in the columns.

0 0

Answer

SELECTED ANSWER
replied on June 17, 2021

I'm not certain if there is a way inside Forms itself to get that information, but if you are on-prem, you can run a query like this one in the LFForms database:

SELECT *
FROM [LFForms].[dbo].[cf_business_processes]
WHERE [date_created] >= DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0)
0 0
replied on June 18, 2021

Thank you. We are using a hybrid system.

You've never given me a wrong answer in the past, so I trust your answer is correct and will mark it as such.

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.