Меню

Ошибка ожидался токен eof

  • Remove From My Forums
  • Question

  • This is the query that I am trying use in Power BI. When submitting, there is an Expression.SyntaxError: Token Eof expected. error. The indicator is showing the error is on the last ). What does it mean and how can I resolve it?

    = Table.AddColumn(#»Removed Other Columns1″, «AgingSubmission», each if [Submission_Status] = «Ready For Test» then ([Case_Created_Date]-TODAY()) else if [Submission_Status] = «In Process» then ([Case_Created_Date]-TODAY())
    else ([Case_Created_Date]-[Submission_LastViewedDate])))


    Ginger Pearl-Berg

Answers

  • Table.AddColumn(
        #"Removed Other Columns1", 
        "AgingSubmission", 
        each if [Submission_Status] = "Ready For Test" then 
                [Case_Created_Date]-DateTime.Date(DateTime.LocalNow())
             else if [Submission_Status] = "In Process" then 
                     [Case_Created_Date]-DateTime.Date(DateTime.LocalNow()) 
             else [Case_Created_Date]-[Submission_LastViewedDate]
    )

    If date columns are of datetime type (and not date type), then remove the DateTime.Date wrapper in the appropriate places.

    • Proposed as answer by

      Thursday, November 29, 2018 10:17 PM

    • Marked as answer by
      Imke FeldmannMVP
      Sunday, January 13, 2019 9:34 AM

I’m sure you’ve not got this far without encountering your fair share of Power Query errors. Just like Excel and other applications, Power Query has its own unique error messages. You’ve probably forgotten the first time you encountered the #NAME? or #VALUE! errors in Excel, but over time you hopefully worked out what to do when they arose. Now you are seeing Power Query errors, which probably appear strange and unfamiliar. It can be daunting at first, but over time you will understand what the errors are and what causes them.

While we can’t cover every error, the purpose of this post is to help demystify some of the more common errors you are likely to encounter.

Types of Power Query errors

Error messages can appear in various places, such as in the Queries & Connections pane, within the Power Query Editor, or maybe just as a value in a field.

I have grouped the common errors into three types:

  • Process creation errors
  • Data processing errors
  • Software bugs

We look at each of these and find out how to fix the most common issues.

Process creation errors

Process creation errors occur as we build a query. These are driven by either errors in the M code or our lack of understanding of how Power Query works.

M code errors

M code errors can be challenging to find, especially if we are new to the language. A comma, a mistyped word, or even a capital letter is enough to cause the process to fail. The three main places where we can edit M code are:

  • Custom Columns
  • Advanced Editor
  • Formula Bar

Let’s start by looking at Custom Columns, then move on to look at the Advanced Editor and Formula Bar.

Custom Columns

Of the M coding options, the Custom Column feature is the most accessible and the one we are most likely to use

Custom Columns contain a syntax check at the bottom of the screen to help guide us with formulas. Unfortunately, unless we’ve been working with Power Query for a while, we won’t understand what many of these messages mean.

Custom Column with a Syntax Error

The screenshot above shows the Token RightParen expected error message (we can also see a red squiggly underline below the comma). This is just one of many potential messages. As we type into the formula box, the message will change. Therefore, it is not worth looking at this message until we think the formula is finished. If the Show error link is visible, we can click it to take us to where the problem is.

Once you know what the messages mean, they are not as confusing as might initially seem. The most common warnings you’ll come across are:

  • Token Literal expected means the next thing in the formula is expected to be a value, column name, or function.
  • Token Then expected, or Token Else expected means the words then or else are expected to be entered. These will appear when writing an if statement.
  • Token RightParen expected means that a closing bracket (or parentheses depending on your local vernacular), is expected to close a formula.
  • A Comma cannot precede a RightParen means what it says; a comma cannot be directly in front of a closing bracket. There are no circumstances in M where this should be necessary.
  • Invalid literal indicates an issue with the value entered as an argument (this often occurs when a text string has not been closed using the double quotation character).
  • Token EoF expected usually occurs when an invalid function name is used, or it uses the wrong case (for example, if is a valid command, while If with an upper case I is not).
  • Token internal expected means the logical test, true value, or false value of an if statement is missing, or a formula contained within these arguments is incomplete.
  • The formula is incomplete usually indications no formula has been entered (only the equals symbol in the formula box).

Once we get the message that No syntax errors have been detected, we can click the OK button to close the window. Of course, this doesn’t mean the formula or data types are correct, but the syntax has been entered correctly.

Advanced Editor & Formula Bar

The Advanced Editor and Formula bar accept changes even if it causes an error. Unfortunately, this means the variety of error messages increases when using these features:

  • The Advanced Editor has the same warning message at the bottom as a Custom Column but allows us to click Done even if there is an error in the code.
  • The Formula Bar has no error checks. We can make any changes to the code and press the Enter key to accept those changes without any checks.

Given the multitude of possible errors we could create, we can’t go through all of them. However, it is much easier to troubleshoot once you know how to read the error message.

Advanced Editor syntax errors

Where there are syntax errors in the Advanced Editor, it highlights them with a red squiggly underline and describes the error at the bottom.

Advanced Editor syntax error

In the example above, the comma is missing at the end of the Source step. Therefore, this creates an error at the start of the #”Changed Type” step.

The underline may not show us exactly where the issue is; however it highlights at what point Power Query identifies the error. So we know it should be in the code prior to the error.

Expression syntax errors

As noted above, nothing stops us from entering errors into the Advanced Editor or Formula Bar.

The screenshot below shows an Expression.SyntaxError… hmmm… what does that mean?

If we look below the error message, Power Query has kindly shown us where the error is. If you notice, there is an arrow —->; this indicates the line that contains the error. By looking along that line, we find a group of ^^^; these pinpoint where the error resides.

Syntax Error in the Preview Window

In our example above, the error is that we have used a data type of tet, which is invalid.

Where there are multiple errors in the code, we may need to go through several rounds of error fixing as the error message will only show one error at a time.

Formula.Firewall error

There is a very frustrating error, which will rear its head from time to time – the dreaded Formula.Firewall error.

This error can take two forms:

Error message #1

Formula.Firewall: Query ‘____’ (step ‘____’) is accessing the data sources that have privacy levels which cannot be used together. Please rebuild this data combination.

Formula.Firewall from privacy levels

Error message #2

Formula.Firewall: Query ‘____’ (step ‘____’) references other queries or steps, so it may not directly access a data source. Please rebuild this data combination.

Formula.Firewall error from combining data sources

What do these mean? And how can we fix it?

Power Query does not like to use two data sources with different privacy settings. This usually occurs when there are:

  • External and internal data sources combined in a single query
  • Dynamic data sources used to define the source of another query

The following steps should fix the Formula.Firewall error.

Apply correct privacy settings

Let’s start by applying the privacy settings. We can do this by ignoring privacy or using the correct setting for each data source.

Ignore privacy

This first option is not ideal, as it ignores the data privacy settings entirely. However, it’s a useful little fix if you are the only person accessing the data.

Click File > Option Settings > Query Options.

The Query Options window dialog box. Select Privacy > Always ignore Privacy Level settings, then click OK.

Ignore Privacy settings

Apply privacy for each data source

Alternatively, rather than ignoring the privacy settings, we could set them correctly.

To set the data source for inputs, click File > Options > Data source settings.

In the data source settings dialog box, select the source and click edit permissions. This allows us to set the privacy setting for each source.

There are four privacy settings:

  • None: There are no privacy settings applied. Microsoft recommends only using this in a controlled environment.
  • Private: The data is confidential or sensitive and should not be shared. This data cannot be shared with another data source.
  • Organizational: The data can be shared within the organization. This data can only be shared with other organization data sources.
  • Public: The data can be shared with any other data source, including public or organizational sources.

We should set the correct privacy level for our data sources.

Flattening queries

If there is still a Formula.Firewall error, we can combine the queries into a single query. The most straightforward approach to achieve this is shown in this post: https://exceloffthegrid.com/power-query-source-cell-value/

Data processing errors

Data processing errors occur when the data is fed through the transformation process. There may be nothing specifically wrong with the data or the process, yet the two don’t work well together. It could be something as simple as the transformation steps expecting to find a column called “Product”, but a “Product” column does not exist in the data set. Neither the data nor the process is incorrect, but they just don’t fit together.

The most common errors in this area are:

  • Wrong source location
  • Column name changes
  • Incorrect data types

Let’s look at each of them in a bit more detail

Wrong source location

The wrong source location error occurs when a file or database changes location, or a server has crashed, and therefore the source cannot be accessed. Either way, Power Query can’t find the source data.

After refreshing, an error message like the following will appear, detailing the file location it cannot find.

Data source error #1

We also see an error in the Queries & Connections window. If we double-click the query, we find out more detail about the error.

Download did not complete - file not found

The Power Query editor opens and shows the following message. Click Go To Error to go to the exact step.

Error within the Power Query Editor source missing

Finally, we can click Edit Settings to change the source location in the window.

There are other, and maybe better, options for changing the source data location; I have written about this in a previous post, so check out that for more details.

Missing column names

Generally, Column header names are hardcoded somewhere within the M code. Therefore, any changes in source data structure can trigger the following error.

MS Excel Error - Column not found

The Queries & Connections pane will show the same Download did not complete error we saw earlier. Opening the Query reveals further details about the error.

Power Query column not found

Ideally, we should aim to build queries that can be flexible when column names change, though that isn’t always possible.

As a quick fix, we can either:

  • Change the header name in the source data
  • Correct the hard-coded value in the M code through the Advanced Editor or Formula Bar
  • Delete the old step and insert a new one that correctly picks up the new column name.

But you must be careful; poorly implemented changes can cause other problems further down in the query.

Incorrect data types

Data type errors will not prevent the data from loading into the query; instead, those cells are loaded as blank. Queries and Connections pane shows the error and indicates the number of lines with errors.

Queries & Connections Pane showing errors

The screenshot above shows 50 errors, but it could easily be just 1 or 2, depending on the structure of the data.

Data type errors occur when:

  • Data is converted from one type to another – for example, trying to change a text string into a decimal data type
  • Incorrect data types used within functions – for example, trying to use a number function on a text data type, or trying to multiply text values

Excel is very forgiving and will happily switch between data types where it can. However, power Query is not as forgiving; therefore, getting the correct data type is essential.

After opening the query, Power Query shows the errors. The pink color below the column header displays the % of errors found in the first 1000 records.

Errors shown within the Preview Window

If the error is not found within the first 1000 records:

  • Change the setting in the status bar to column profiling based on the entire data set.
  • Filter to include only errors by clicking Home > Keep Rows > Keep Errors

After clicking the word “Error” within the Preview Window, it provides details about the specific issue.

PQ details the errors

In the screenshot above, we can see that Power Query was trying to convert a text value into a date, which caused the error.

While there may be multiple lines with errors, it does not mean you must fix each row individually. Changing one step may be enough to fix all the errors at the same time.

Software bugs

Finally, there is another unfortunate type of error that is outside of our control; software bugs.

When I started using Power Query, I came across two issues (though I didn’t know they were bugs at the time). In both cases, I concluded it was my fault for not understanding the tool correctly. However, it wasn’t me, but the software which was not working correctly.

As Power Query is continually updated, bugs can come and go quickly as newer versions are released. However, I would say that over the past few years, Power Querty has become robust and rarely suffers from issues.

Hopefully, you will not encounter any of the problems I had; they have already been resolved. Therefore, if you meet an issue where the software is not behaving as documented, then updating to the newest version should resolve the issue. Also, ensure you report any issues to Microsoft; they can only fix issues if they know they exist.

Conclusion

Power Query error messages can seem confusing as they use terms that we are unfamiliar with. However, I hope this post has helped you to identify your error and provides suggestions on how to fix it.

Read more posts in this Introduction to Power Query series

  1. Introduction to Power Query
  2. Get data into Power Query – 5 common data sources
  3. Data Refresh Power Query in Excel: 4 ways & advanced options
  4. Use the Power Query editor to update queries
  5. Get to know Power Query Close & Load options
  6. Power Query Parameters: 3 methods
  7. Common Power Query transformations (50+ powerful transformations explained)
  8. Power Query Append: Quickly combine many queries into 1
  9. Get data from folder in Power Query: combine files quickly
  10. List files in a folder & subfolders with Power Query
  11. How to get data from the Current Workbook with Power Query
  12. How to unpivot in Excel using Power Query (3 ways)
  13. Power Query: Lookup value in another table with merge
  14. How to change source data location in Power Query (7 ways)
  15. Power Query formulas (how to use them and pitfalls to avoid)
  16. Power Query If statement: nested ifs & multiple conditions
  17. How to use Power Query Group By to summarize data
  18. How to use Power Query Custom Functions
  19. Power Query – Common Errors & How to Fix Them
  20. Power Query – Tips and Tricks

Headshot Round

About the author

Hey, I’m Mark, and I run Excel Off The Grid.

My parents tell me that at the age of 7 I declared I was going to become a qualified accountant. I was either psychic or had no imagination, as that is exactly what happened. However, it wasn’t until I was 35 that my journey really began.

In 2015, I started a new job, for which I was regularly working after 10pm. As a result, I rarely saw my children during the week. So, I started searching for the secrets to automating Excel. I discovered that by building a small number of simple tools, I could combine them together in different ways to automate nearly all my regular tasks. This meant I could work less hours (and I got pay raises!). Today, I teach these techniques to other professionals in our training program so they too can spend less time at work (and more time with their children and doing the things they love).


Do you need help adapting this post to your needs?

I’m guessing the examples in this post don’t exactly match your situation. We all use Excel differently, so it’s impossible to write a post that will meet everybody’s needs. By taking the time to understand the techniques and principles in this post (and elsewhere on this site), you should be able to adapt it to your needs.

But, if you’re still struggling you should:

  1. Read other blogs, or watch YouTube videos on the same topic. You will benefit much more by discovering your own solutions.
  2. Ask the ‘Excel Ninja’ in your office. It’s amazing what things other people know.
  3. Ask a question in a forum like Mr Excel, or the Microsoft Answers Community. Remember, the people on these forums are generally giving their time for free. So take care to craft your question, make sure it’s clear and concise.  List all the things you’ve tried, and provide screenshots, code segments and example workbooks.
  4. Use Excel Rescue, who are my consultancy partner. They help by providing solutions to smaller Excel problems.

What next?
Don’t go yet, there is plenty more to learn on Excel Off The Grid.  Check out the latest posts:

 

spryte

Пользователь

Сообщений: 4
Регистрация: 04.10.2018

#1

04.10.2018 11:47:11

Добрый день!

Есть запрос к OLAP кубу, в определенном шаге фильтруются нужные дни. Код шага ниже (в фильтре указано 3 дня):

Код
#"Строки с примененным фильтром5" = Table.SelectRows(#"Добавленные элементы4", each (Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[1]" meta [DisplayName = "1"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[2]" meta [DisplayName = "2"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[3]" meta [DisplayName = "3"])),

Кол-во дней в месяце — это переменная величина, и проблема в том, что на каждый выбранный вручную день, редактор добавляет код :

Код
' or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[2]" meta [DisplayName = "2"]

а дни будут задаваться переменной.

Написали функцию DenOLAP(NN), которая на основе кол-ва дней генерирует текстовый код типа, указанного выше. Чтобы редактор понимал текст формулы, использовали функцию Expression.Evaluate.

Код
#"Строки с примененным фильтром5" = Table.SelectRows(#"Добавленные элементы4", each (Expression.Evaluate(DenOLAP(NN), #shared))),

Редактор выдает ошибку

Expression.Error: Неизвестный идентификатор. Использовалось ли условное обозначение [field] для _[field] вне выражения «each»?

Где ошибка?

Заранее, благодарен!

Изменено: spryte04.10.2018 11:51:16

 

Ошибка в вашей функции скорее всего… что такое NN? Что возвращает эта функция — true/false?
Проверьте, соответствует ли функция синтаксису Table.SelectRows

 

spryte

Пользователь

Сообщений: 4
Регистрация: 04.10.2018

#3

05.10.2018 10:52:26

NN это переменная — количество дней. Функция DenOLAP(5) возвращает текст

Код
'Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[1]" meta [DisplayName = "1"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[2]" meta [DisplayName = "2"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[3]" meta [DisplayName = "3"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[4]" meta [DisplayName = "4"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[5]" meta [DisplayName = "5"]

Для проверки синтаксиса копировали вместо Expression.Evaluate(DenOLAP(NN), #shared) этот текст, все отрабатывает.

 

PooHkrd

Пользователь

Сообщений: 6602
Регистрация: 22.02.2017

Excel x64 О365 / 2016 / Online / Power BI

#4

05.10.2018 11:28:03

Обратите внимание, на то как в примере к описанию функции

Expression.Evaluate

обозначаются текстовые значения внутри текста, который она должна преобразовывать. Там используются двойные кавычки.
т.е. на выходе DenOLAP должно быть что-то вроде:

Код
"Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[1]"" meta [DisplayName = ""1""] or и т.д."

Не уверен что поможет, но мало ли?

Вот горшок пустой, он предмет простой…

 

spryte

Пользователь

Сообщений: 4
Регистрация: 04.10.2018

#5

05.10.2018 12:28:37

Выдает ошибку

Expression.Error: [1,59-1,60] Ожидался токен Eof.
Сведения:
List

при вставке

Код
'Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[1]"" meta [DisplayName = ""1""] or Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[2]"" meta [DisplayName = ""2""] or Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[3]"" meta [DisplayName = ""3""] or Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[4]"" meta [DisplayName = ""4""] or Cube.AttributeMemberId([Период.День месяца]) = ""[Periods].[Period Day].&[5]"" meta [DisplayName = ""5""]
 

PooHkrd

Пользователь

Сообщений: 6602
Регистрация: 22.02.2017

Excel x64 О365 / 2016 / Online / Power BI

#6

05.10.2018 13:36:41

Цитата
spryte написал:
[field] для _[field] вне выражения «each»?

Вообще суть ошибки в том, что PQ считает что ему для оператора each вместо значения какого-то столбца в текущей строке подсунули все значения этого столбца целиком.

Вот горшок пустой, он предмет простой…

 

spryte

Пользователь

Сообщений: 4
Регистрация: 04.10.2018

#7

08.10.2018 04:14:25

Ох, что-то в тупике я:( Может быть вообще кто-то сталкивался с подобной задачей и есть какой то альтернативный вариант замены выражения (в данном выражении в фильтре указаны 1,2 и 3 дни месяца)

Код
#"Строки с примененным фильтром6" = Table.SelectRows(#"Добавленные элементы4", each (Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[1]" meta [DisplayName = "1"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[2]" meta [DisplayName = "2"] or Cube.AttributeMemberId([Период.День месяца]) = "[Periods].[Period Day].&[3]" meta [DisplayName = "3"])),

с месяцами и годами, главное, все просто, но тут из-за перечисления вся логика ломается

 

StepanWolkoff

Пользователь

Сообщений: 1247
Регистрация: 07.05.2015

#8

09.10.2018 23:14:54

spryte, а не проще отправлять запрос MDX и получать уже отфильтрованные данные, чем фильтровать их в PowerQuery?

Posted Dec 02, 2019 12:19 AM

Yes you need need to change «Let» and «In» to small case as @Audrey Abbey mentioned,  Power Query is case sensitive

let
Recup = (NomFichier) =>

let
    Source = Excel.Workbook(File.Contents(NomFichier), null, true),
    Feuil1_Sheet = Source{[Item="Feuil1",Kind="Sheet"]}[Data],
    #"Promoted Headers" = Table.PromoteHeaders(Feuil1_Sheet, [PromoteAllScalars=true]),
    #"Removed Top Rows" = Table.Skip(#"Promoted Headers",38),
    #"Filled Down" = Table.FillDown(#"Removed Top Rows",{"Column1", "Column2", "Column3"}),
    #"Filtered Rows" = Table.SelectRows(#"Filled Down", each [Données en 7 classeurs Excel] <> null),
    #"Filtered Rows1" = Table.SelectRows(#"Filtered Rows", each [Données en 7 classeurs Excel] <> "Total"),
    #"Promoted Headers1" = Table.PromoteHeaders(#"Filtered Rows1", [PromoteAllScalars=true]),
    #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers1",{{"Marque ", type text}, {"Année", type text}, {"Version", type text}, {"Pays", type text}, {"01", Int64.Type}, {"02", Int64.Type}, {"03", Int64.Type}, {"04", Int64.Type}, {"05", Int64.Type}, {"06", Int64.Type}, {"07", Int64.Type}, {"08", Int64.Type}, {"09", Int64.Type}, {"10", Int64.Type}, {"11", Int64.Type}, {"12", Int64.Type}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Marque ", "Année", "Version", "Pays"}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Other Columns", "Date", each "01"&"/"&[Attribute]&"/"&[Année]),
    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Date", type date}}),
    #"Removed Columns" = Table.RemoveColumns(#"Changed Type1",{"Année", "Attribute"}),
    #"Filtered Rows2" = Table.SelectRows(#"Removed Columns", each [Value] <> 0)
in
    #"Filtered Rows2"

in
Recup​

——————————
Farhan Ahmed
Senior Business Intelligence Consultant
karachi
3452523688
——————————

I’m creating a custom column. What I want is a 1 if the string in another column says «Positive», else a 0.

Ideally, it should look like something like this:

id Sentiment Positive Tag
1 Positive 1
2 Neutral 0
3 Negative 0

Here’s where I’m running into a problem. An error is coming up in my logic:

Code sample : Positive Tag = IF [Sentiment] = «Positive» then 1 else 0

Attempt 1

Attempt 2

BigBen's user avatar

BigBen

43.1k6 gold badges26 silver badges39 bronze badges

asked Apr 9, 2021 at 19:35

G H's user avatar

The M language is case-sensitive. Try if instead of IF.

answered Apr 9, 2021 at 19:47

Alexis Olson's user avatar

Alexis OlsonAlexis Olson

38k7 gold badges42 silver badges64 bronze badges

0

  • Remove From My Forums
  • Question

  • This is the query that I am trying use in Power BI. When submitting, there is an Expression.SyntaxError: Token Eof expected. error. The indicator is showing the error is on the last ). What does it mean and how can I resolve it?

    = Table.AddColumn(#»Removed Other Columns1″, «AgingSubmission», each if [Submission_Status] = «Ready For Test» then ([Case_Created_Date]-TODAY()) else if [Submission_Status] = «In Process» then ([Case_Created_Date]-TODAY())
    else ([Case_Created_Date]-[Submission_LastViewedDate])))


    Ginger Pearl-Berg

Answers

  • Table.AddColumn(
        #"Removed Other Columns1", 
        "AgingSubmission", 
        each if [Submission_Status] = "Ready For Test" then 
                [Case_Created_Date]-DateTime.Date(DateTime.LocalNow())
             else if [Submission_Status] = "In Process" then 
                     [Case_Created_Date]-DateTime.Date(DateTime.LocalNow()) 
             else [Case_Created_Date]-[Submission_LastViewedDate]
    )

    If date columns are of datetime type (and not date type), then remove the DateTime.Date wrapper in the appropriate places.

    • Proposed as answer by

      Thursday, November 29, 2018 10:17 PM

    • Marked as answer by
      Imke FeldmannMVP
      Sunday, January 13, 2019 9:34 AM

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ятрогенная патология врачебные ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Ошибка ожидается идентификатор паскаль