Hi Enzo,
Using Mister_Nobody's table and adding a AND query then including Year field such as below:
Select Top 1000000 tblassets.AssetID,
tblassets.AssetName,
tblQuickFixEngineering.InstalledOn,
tblQuickFixEngineeringUni.HotFixID
From tblassets
Inner Join tblQuickFixEngineering On
tblassets.AssetID = tblQuickFixEngineering.AssetID
Inner Join tblQuickFixEngineeringUni On tblQuickFixEngineering.QFEID =
tblQuickFixEngineeringUni.QFEID
Where Month(tblQuickFixEngineering.InstalledOn) = 2 AND
Year(tblQuickFixEngineering.InstalledOn) = 2025
Order By tblassets.AssetName
Then exporting the report to Excel, you can use Filtering on the HotFixID eg, Selecting "KB5051974"
And you will then get the list of Hosts (AssetName) where said KB was installed for the month of Feb 2025.
Alternatively apply the filter on the AssetName column to view KB's installed on said Host for the month of February.
@Mister_Nobody thank you for your Query and input 🙂