Created
October 30, 2025 12:04
-
-
Save cbaragao/0a07c862607ac57a1368eb41a1011f80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (l as list, range as list)=> | |
| let | |
| Start_Position = List.PositionOf(l, range{0}), | |
| End_Position = List.PositionOf(l, range{1}), | |
| Result= List.Range(l,Start_Position,(End_Position-Start_Position)+1) | |
| in | |
| Result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment