Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I have managed to get to this data shown using a Paginated Report table, but only want the values in blue circles. Below is another table in crystal that shows the data that needs to be matched. The crystal report has a aging criteria that says <=180. Is there a way to obtain the results in the blue circles?
SELECT distinct
T_SMPL.SMPL_ID,
T_SMPL.SMPL_MIX_ID,
T_SMPL.SMPL_DT,
TO_DATE(SMPL_DT,'YYYYMMDD') smpl_dt_disp,
to_date(:D) - TO_DATE(T_SMPL.SMPL_DT,'YYYYMMDD') Days_Between,
T_PCC.MIX_ID
FROM
SM_ADMIN.T_SMPL T_SMPL
INNER JOIN SM_ADMIN.T_PCC T_PCC ON T_SMPL.SMPL_MIX_ID = T_PCC.MIX_ID
WHERE
TO_DATE(SMPL_DT,'YYYYMMDD')<= (:D)
AND
(
'Z' IN (:MIXID) OR
T_PCC.MIX_ID IN (:MIXID)
)
Solved! Go to Solution.
Hi @ResearchDev ,
1. Modeled in Power BI Desktop, uploaded to Service. then used the dataset as the data source and filtered it with DAX language.
2. Use hidden report parameters that have default values populated by a second dataset. Then use the hidden report parameters in the filter expression.
Sample parameter:
Filter Expression:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks so much for the help. I managed to get someone to assist on this who rewrote the entire thing using SQL instead. I will try to post that as well sometime.
Hi @ResearchDev ,
1. Modeled in Power BI Desktop, uploaded to Service. then used the dataset as the data source and filtered it with DAX language.
2. Use hidden report parameters that have default values populated by a second dataset. Then use the hidden report parameters in the filter expression.
Sample parameter:
Filter Expression:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
99 | |
94 | |
88 | |
70 |
User | Count |
---|---|
166 | |
131 | |
128 | |
102 | |
98 |