Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
Hi @LMcQ ,
Please update the formula of calculated column [AffectedStockroom] as below and check if it can return your expected result... Please find the details in the attachment.
AffectedStockroom =
VAR _loc =
CALCULATE (
MAX ( 'Locations'[Location Name] ),
FILTER (
'Locations',
IFERROR (
SEARCH ( 'HistoryExtracts'[Description], 'Locations'[Location Name], 1, 0 ),
0
) > 0
&& 'Locations'[Site Category] = "E"
)
)
RETURN
IF (
HistoryExtracts[Type] = "Stockroom Update"
&& NOT ( ISBLANK ( _loc ) ),
_loc,
"Not Found"
)
Best Regards
Thank you so much... I've spent days trying to figure it out on my own... Fantastic!!! Sorting and filtering have always been a weak spot for me
Hi @LMcQ ,
Please update the formula of calculated column [AffectedStockroom] as below and check if it can return your expected result... Please find the details in the attachment.
AffectedStockroom =
VAR _loc =
CALCULATE (
MAX ( 'Locations'[Location Name] ),
FILTER (
'Locations',
IFERROR (
SEARCH ( 'HistoryExtracts'[Description], 'Locations'[Location Name], 1, 0 ),
0
) > 0
&& 'Locations'[Site Category] = "E"
)
)
RETURN
IF (
HistoryExtracts[Type] = "Stockroom Update"
&& NOT ( ISBLANK ( _loc ) ),
_loc,
"Not Found"
)
Best Regards
User | Count |
---|---|
10 | |
5 | |
4 | |
4 | |
3 |
User | Count |
---|---|
13 | |
9 | |
5 | |
5 | |
4 |