List.AllTrue
This function will return a boolean value of true if all of the expressions within the specified list evaluate to true.
This function will return a boolean value of true if all of the expressions within the specified list evaluate to true.
Check if all the statements in the given list {true, true, 2 > 0} are true.
Usage:
Use Power Query MList.AllTrue({true, true, 2 > 0})
Output:
true
Check if all the statements in the given list {true, true, 2 < 0} are true.
Usage:
Utilize Power Query MList.AllTrue({true, false, 2 < 0})
Output:
false