I've got a problem with a sliced view. The s...

Iโ€™ve got a problem with a sliced view.

The slice has the following show condition: AND([OTO Status]=โ€œ02-installiertโ€, OR([Messung ok?]="", [Installation ok?]="", [MBI ok?]=""))

When I โ€œTestโ€ it, it works probably and it shows all the entries I want to see.

But in the UX view, they just donโ€™t show up.

When I make a more simple formula ([OTO Status]=โ€œ02-installiertโ€) it works.

Does anyone have a solution?

Thanks in advance. Adrian

0 19 423
19 REPLIES 19

If all your fields inside the OR expression are not blank, it wonโ€™t show any records. Is that the situation

Exactly, it just doesnโ€™t work, the โ€œtestโ€ shows those entries, but the sliced view doesnโ€™t.

Yes, I have a lot of records where the first condition is true, and those other three conditions in the OR are empty.

With what row number?

ex. Row Number 76, 79 and 80

You have a dashboard view โ€œBauleiter Kontrolleโ€ and the 2nd view is โ€œOTO Bauleiterโ€ which is a slice from the DB_OTO table. If I open the table view, all your columns [Messung ok?], [Installation ok?] and [MBI ok?] seems to be blank.

Your actions are writing value โ€œOkโ€ into your columns. They should write TRUE because the column type is Y/N. Anywayโ€ฆ I canโ€™t see any โ€œOkโ€ either.

I think I got a logic problem here in my head.

When I have this Show If formula: AND([OTO Status]=โ€œ02-installiertโ€, OR([Messung ok?]="", [Installation ok?]="", [MBI ok?]=""))

It should show every entry that has OTO Status = 02-installiert if 1, 2 or 3 of the OR condition are empty.

And then it would also work with the action that sets โ€œokโ€.

In this case I just have to change the column type from Y/N to

Or am I confusing myself with something?

You have understood it correctly. If you have values โ€œokโ€ in your datatable, you should change them to TRUE when you change the column type to Y/N. Then they will work as well.

If you donโ€™t want to set any value other than TRUE, you could write the formula like

AND([OTO Status]=โ€œ02-installiertโ€,OR(NOT([Messung ok?]=TRUE),NOT([Installation ok?]=TRUE),NOT([MBI ok?]=TRUE)))

Thank you Aleksi, I think I got it now. Iโ€™ll try this out on the weekend when the app isnโ€™t in use.

Youโ€™re welcome

What is the account ID, app name and slice name? I can check the app if itโ€™s okay for you?

Account ID: 396133 App Name: ewz Z009 Slice Name: OTO Bauleiter

Thanks in advance, Aleksi.

Are you looking for AND([OTO Status]=โ€œ02-installiertโ€, OR([Messung ok?]=FALSE, [Installation ok?]=FALSE, [MBI ok?]=FALSE))

Still doesnโ€™t work.

The view name would be โ€œOTO Bauleiterโ€

Where are you showing that view? It seems that it*s a ref view.

Itโ€™s used in the view โ€œBauleiter Kontrolleโ€

Iโ€™m still looking for a solution to this problem. I couldnโ€™t fix it by myself.

Do you have any record where you have that value FALSE? I mean those 3 columns.

Top Labels in this Space