The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I hope someone can help me. I have a table (A) with two date columns. In another table (B) I have one date column. I want to show in table B how many rows match my criteria. See below: I want to do this in Power Query and do not want to work with DAX.
Count row if column C > F3 and column A < F3
Thanks a lot!
Solved! Go to Solution.
@BYENER , You have create a new column in Power Query in table 2. File is attached below after signature
let
_1 = [Column1],
_table = Table.SelectRows(DateRange, each [Date1] <= _1 and (if [Date2] =null then DateTime.Date(DateTime.FixedLocalNow()) else [Date2]) >= _1),
_count = Table.RowCount(_table)
in
_count
@BYENER , You have create a new column in Power Query in table 2. File is attached below after signature
let
_1 = [Column1],
_table = Table.SelectRows(DateRange, each [Date1] <= _1 and (if [Date2] =null then DateTime.Date(DateTime.FixedLocalNow()) else [Date2]) >= _1),
_count = Table.RowCount(_table)
in
_count
User | Count |
---|---|
62 | |
57 | |
54 | |
51 | |
33 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
43 |