I created a Power Automate flow for users who complete a Microsoft Forms questionnaire called βTHE INITIATIVE SUGGESTION BOX.β The responses collected from the form create a Microsoft Teams record in a list called βProject.β I want the names of the projects created to follow a specific naming convention: βRXBO β YYYYMMDD β 000β. The three zeros should serve as a counter to number the projects created on the same day from 12:00 AM to 11:59 PM. I wloud like to create a Dynamic BOM automation in Power Automate
here is teh architcture of my solutiuon
[Initialize varDateDay] formatDateTime(utcNow(),'yyyyMMdd')
β
[Compose ODataFilter] concat(startsWith('RXBO - ', variables('DateJour')))
β (OData β startswith(ID_x0020_Initiative_x0020_AA,βRXBO - 20240507β))
[Get items (Project)]
β
[Set varDayCounter]
β
[Set varTextCounter]
β
[Create project with concatenated title]
But It does not work out.
Is tehre anyone wdid soemthing like that ?