Does anyone know if it's possible to do a search f...
# general
j
Does anyone know if it's possible to do a search for items that don't have a price at a certain level? For instance, I have a "pro" pricing level that gives a discount to certain customers. However, since it's not the main price level, this price frequently doesn't get updated when new items are launched. I'd like to be able to search for items that don't have a price assigned at this price level. However, when I set my criteria to include that Price Level under Pricing Fields, it excludes empty results and only shows items that have a price at that level. How do I include those empty resutls? Does that make sense? I'm assuming it could probably be accomplished with a formula, but that's never been an area of expertise...
i
curious to see what others are doing, this has always been a challenge as well, usually involves exporting all items on one search and then the specific price level on another and doing a comparison in Excel
this is the other workaround, the "Other Prices" field shows all the price levels in columns you can then export and filter in Excel. https://suiteanswers.custhelp.com/app/answers/detail/a_id/36862/loc/en_US
j
@Israel Gonzalez That at least gets me closer to what I'm looking for. It doesn't seem to account for different currencies, but at least it's something
i
just don’t ask to see a report that shows when pricing was modified…
😲 1
j
Here's what I did, for anyone interested: • Created a search using my normal criteria to find web items • Under the search criteria, under the Summary tab, I added a row where the Summary Type is "Maximum", the field is Formula (Numeric). I set the formula value to be equal to 0 and used the following formula:
Copy code
CASE WHEN {pricing.pricelevel} = 'Pro Purchase Program' AND {pricing.currency} = 'USA' THEN {pricing.unitprice} ELSE 0 END
• Clicked "Use Expressions" and duplicated the row, adding an "Or" criteria with the following formula to also account for Canadian pricing:
Copy code
CASE WHEN {pricing.pricelevel} = 'Pro Purchase Program' AND {pricing.currency} = 'Canadian Dollar' THEN {pricing.unitprice} ELSE 0 END
• Under the results tab, I used the same formula(s) to create columns for the US and Canadian pricing, using Formula (Currency) this time and a Summary Type of "Maximum", with "Group" as the Summary Type for my other columns ◦ As it turns out, the Summary type is important and is where I was getting stuck because it isn't specifically mentioned in the link above but if you don't put it in, you get a row for each price level. • Created an email alert for this search so that I can be proactively alerted whenever there are items that appear on the web that don't have pro pricing
i
Thanks I’ll have to give that a try tomorrow