@NewtKris1
You would just add the additional criteria to your filter formula.
It would be like this:
Sort(
Filter(Proposals,
IsBlank(DDName.Selected.Result) || Emailforpersonleadingproposal.DisplayName = DDName.Selected.Result,
IsBlank(DDDivision.Selected.Value) || Ownerofthisopportunityorproposal = DDDisivion.Selected.Value,
IsBlank(DDType.Selected.Value) || RequestType = DDType.Selected.Value,
ItemStatus = "Blank"
),
Submissiondeadline
)
A few things:
1) You were using SelectedText on your dropdown controls - that is a deprecated property and should be avoided. In the above formula, I have replaced it with the proper .Selected However, the .Value that follows may or may not be a valid column of your dropdown. So, replace that with the appropriate column name if necessary. If you are not sure, then share the Items property formula on those dropdowns.
2) You did not mention the name of type of column that will hold the draft status. In the above, it is considered to just be a text column. If it is a choice column, then change the above with the proper name of the column and add a .Value to the name.
3) You made mention of the user being identified in the OnStart, but you did not mention what you want to do with that in regard to your formula.
Please clarify any of the above.
I hope this is helpful for you.