Power app Table preview not showing me every value

Gabriel Gomes Aguiar 25 Reputation points
2024-07-17T16:04:18.16+00:00

this is the code i had in my classic datatable but i want to use the table preview and it just shows me on column and the other are just blank and idk why it does not work

If(
    Toggle1_3.Value = false && ComboBox2.Selected.Value = Blank() && ComboBox3.Selected.Value = Blank(),
    Filter(
        View_PTOPO_INFGEST_CheckPCs,
        Text(company) = 'select _location'.Selected.Value
    ),
    If(
        Toggle1_3.Value = true && ComboBox2.Selected.Value = Blank() && ComboBox3.Selected.Value = Blank(),
        Filter(
            View_PTOPO_INFGEST_CheckPCs,
            Check_status = true || Check_status = false
        ),
        If(
            Toggle1_3.Value = true && ComboBox2.Selected.Value <> Blank() && ComboBox3.Selected.Value = Blank(),
            Filter(
                View_PTOPO_INFGEST_CheckPCs,
                (IsBlank(ComboBox2.SelectedItems) || estado_desc in ComboBox2.SelectedItems.Value)
            ),
            If(
                Toggle1_3.Value = true && ComboBox2.Selected.Value <> Blank() && ComboBox3.Selected.Value <> Blank(),
                Filter(
                    View_PTOPO_INFGEST_CheckPCs,
                    ComboBox3.Selected.Value = Text(Check_status) && (IsBlank(ComboBox2.SelectedItems) || estado_desc in ComboBox2.SelectedItems.Value)
                ),
                If(
                    Toggle1_3.Value = true && ComboBox2.Selected.Value = Blank() && ComboBox3.Selected.Value <> Blank(),
                    Filter(
                        View_PTOPO_INFGEST_CheckPCs,
                        ComboBox3.Selected.Value = Text(Check_status)
                    ),
                    If(
                        Toggle1_3.Value = false && ComboBox2.Selected.Value <> Blank() && ComboBox3.Selected.Value <> Blank(),
                        Filter(
                            View_PTOPO_INFGEST_CheckPCs,
                            Text(company) = 'select _location'.Selected.Value && (IsBlank(ComboBox2.SelectedItems) || estado_desc in ComboBox2.SelectedItems.Value) && ComboBox3.Selected.Value = Text(Check_status)
                        ),
                        If(
                            Toggle1_3.Value = false && ComboBox2.Selected.Value = Blank() && ComboBox3.Selected.Value <> Blank(),
                            Filter(
                                View_PTOPO_INFGEST_CheckPCs,
                                Text(company) = 'select _location'.Selected.Value && ComboBox3.Selected.Value = Text(Check_status)
                            ),
                            If(
                                Toggle1_3.Value = false && ComboBox2.Selected.Value <> Blank() && ComboBox3.Selected.Value = Blank(),
                                Filter(
                                    View_PTOPO_INFGEST_CheckPCs,
                                    Text(company) = 'select _location'.Selected.Value && (IsBlank(ComboBox2.SelectedItems) || estado_desc in ComboBox2.SelectedItems.Value)
                                )
                            )
                        )
                    )
                )
            )
        )
    )
)

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
38,164 questions
{count} votes